diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2013-01-05 11:19:26 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2013-01-05 11:19:26 +0000 |
commit | 7d77ce8ae17a2d60c0c384747a1dfb8dabfca904 (patch) | |
tree | c8855ff1507480b88cde5f99bbf078944992c924 /libexec | |
parent | c137cea97d4f127b156aa7cf127b1071bbb6a322 (diff) |
if defined(NOPIC), do not attempt to .include arch/Makefile.inc for it may
not exist yet.
Diffstat (limited to 'libexec')
-rw-r--r-- | libexec/ld.so/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libexec/ld.so/Makefile b/libexec/ld.so/Makefile index 62dde2b36a2..d531f6809fe 100644 --- a/libexec/ld.so/Makefile +++ b/libexec/ld.so/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.39 2012/09/12 09:19:54 haesbaert Exp $ +# $OpenBSD: Makefile,v 1.40 2013/01/05 11:19:25 miod Exp $ SUBDIR=ldconfig ldd @@ -9,7 +9,6 @@ MAN= ld.so.1 NOPROG= .else PROG= ld.so -.endif VPATH=${.CURDIR}/../../lib/libc/string @@ -36,5 +35,6 @@ ELF_LDFLAGS+=--shared -Bsymbolic --no-undefined $(PROG): $(LD) -x -e _dl_start $(ELF_LDFLAGS) -o $(PROG) $(OBJS) $(LDADD) +.endif .include <bsd.prog.mk> |