diff options
author | bde <bde@FreeBSD.org> | 2004-02-26 07:50:56 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 2004-02-26 07:50:56 +0000 |
commit | 709b7c8073cf9d9f35871ce845efc8e61034544a (patch) | |
tree | d560bc1a6380c851c6cb3da83c0e7608a4a4c326 /share/syscons | |
parent | fd2c94bc06aae20fe6c885ec5804b512900bf5fc (diff) | |
download | FreeBSD-src-709b7c8073cf9d9f35871ce845efc8e61034544a.zip FreeBSD-src-709b7c8073cf9d9f35871ce845efc8e61034544a.tar.gz |
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.
Diffstat (limited to 'share/syscons')
-rw-r--r-- | share/syscons/scrnmaps/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/share/syscons/scrnmaps/Makefile b/share/syscons/scrnmaps/Makefile index 64bf455..1c5dc88 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> |