Module Name: src
Committed By: uwe
Date: Tue Jan 31 19:58:22 UTC 2012
Modified Files:
src/lib/csu/common: Makefile.inc
Log Message:
Use -DPIC to compile crtbeginS.o since that's what <machine/asm.h>
headers check.
To generate a diff of this commit:
cvs rdiff -u -r1.3 -r1.4 src/lib/csu/common/Makefile.inc
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/lib/csu/common/Makefile.inc
diff -u src/lib/csu/common/Makefile.inc:1.3 src/lib/csu/common/Makefile.inc:1.4
--- src/lib/csu/common/Makefile.inc:1.3 Mon Jan 31 17:54:20 2011
+++ src/lib/csu/common/Makefile.inc Tue Jan 31 19:58:22 2012
@@ -1,4 +1,5 @@
-# $NetBSD: Makefile.inc,v 1.3 2011/01/31 17:54:20 drochner Exp $
+Warning: Permanently added the RSA host key for IP address '149.20.53.70' to the list of known hosts.
+# $NetBSD: Makefile.inc,v 1.4 2012/01/31 19:58:22 uwe Exp $
.include <bsd.own.mk>
@@ -23,7 +24,7 @@ crtbegin.o: crtbegin.S
crtbeginS.o: crtbegin.S
${_MKTARGET_COMPILE}
- ${COMPILE.S} -DSHARED ${ARCHDIR}/crtbegin.S -o ${.TARGET}.o
+ ${COMPILE.S} -DPIC -DSHARED ${ARCHDIR}/crtbegin.S -o ${.TARGET}.o
${LD} -x -r -o ${.TARGET} ${.TARGET}.o
rm -f ${.TARGET}.o
.if ${MKSTRIPIDENT} != "no"