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.
This commit is contained in:
Bruce Evans 2004-02-26 07:50:56 +00:00
parent 5c3a55dea7
commit 72abc018fe
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=126268
2 changed files with 2 additions and 2 deletions

View File

@ -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

View File

@ -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>