Build the setup program static so that we don't try to use the shared

loader before it has been installed in a transition build from aout to elf.
This commit is contained in:
John Birrell 1998-08-15 07:46:35 +00:00
parent f68e5c78bb
commit e4b6f0d19f
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=38324

View File

@ -13,6 +13,6 @@ data.c: glorkz setup
./setup ${.CURDIR}/glorkz > data.c
setup: setup.o
${CC} ${CFLAGS} ${LDFLAGS} -o ${.TARGET} ${.ALLSRC}
${CC} -static ${CFLAGS} ${LDFLAGS} -o ${.TARGET} ${.ALLSRC}
.include <bsd.prog.mk>