aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBruce Evans <bde@FreeBSD.org>2004-02-26 07:50:56 +0000
committerBruce Evans <bde@FreeBSD.org>2004-02-26 07:50:56 +0000
commit72abc018feb147db3f329cb3e87b981481b6a2cf (patch)
treed560bc1a6380c851c6cb3da83c0e7608a4a4c326
parent5c3a55dea7828393fe084b86a09ae393f0e40cb3 (diff)
downloadsrc-72abc018feb147db3f329cb3e87b981481b6a2cf.tar.gz
src-72abc018feb147db3f329cb3e87b981481b6a2cf.zip
Rremoved bogus -static from CFLAGS. Makeworld will add -static in the
correct place if needed and possible. Self-hosted builds can just use the system default.
Notes
Notes: svn path=/head/; revision=126268
-rw-r--r--gnu/usr.bin/cc/f771/Makefile2
-rw-r--r--share/syscons/scrnmaps/Makefile2
2 files changed, 2 insertions, 2 deletions
diff --git a/gnu/usr.bin/cc/f771/Makefile b/gnu/usr.bin/cc/f771/Makefile
index 25fb563e6a9b..436bf5962d6c 100644
--- a/gnu/usr.bin/cc/f771/Makefile
+++ b/gnu/usr.bin/cc/f771/Makefile
@@ -19,7 +19,7 @@ LDADD= ${LIBCC_INT}
build-tools: fini
fini: fini.o
- ${CC} -static ${CFLAGS} ${LDFLAGS} -o ${.TARGET} ${.ALLSRC}
+ ${CC} ${CFLAGS} ${LDFLAGS} -o ${.TARGET} ${.ALLSRC}
CLEANFILES= fini fini.o
diff --git a/share/syscons/scrnmaps/Makefile b/share/syscons/scrnmaps/Makefile
index 64bf4554b6ca..1c5dc88382a1 100644
--- a/share/syscons/scrnmaps/Makefile
+++ b/share/syscons/scrnmaps/Makefile
@@ -20,7 +20,7 @@ ${SCRMAPS}: ${.TARGET:R}.mk
rm -f ${.TARGET:R}.tmp
${SCRMAPS_MK}: ${.TARGET:R} mkscrfil.c
- ${CC} -static ${CFLAGS} -I${.CURDIR} -DFIL=\"${.TARGET:R}\" ${LDFLAGS} \
+ ${CC} ${CFLAGS} -I${.CURDIR} -DFIL=\"${.TARGET:R}\" ${LDFLAGS} \
-o ${.TARGET} ${.CURDIR}/mkscrfil.c
.include <bsd.prog.mk>