aboutsummaryrefslogtreecommitdiff
path: root/games/adventure/Makefile
diff options
context:
space:
mode:
authorJohn Birrell <jb@FreeBSD.org>1998-08-15 07:46:35 +0000
committerJohn Birrell <jb@FreeBSD.org>1998-08-15 07:46:35 +0000
commite4b6f0d19fb1540039459071283b0c6b89a9fdb6 (patch)
treed4439e53fbf7a9049e707ebbba98b2e28a290cb7 /games/adventure/Makefile
parentf68e5c78bbbc6a80a620fb6ccf356b29a7c1da4e (diff)
downloadsrc-e4b6f0d19fb1540039459071283b0c6b89a9fdb6.tar.gz
src-e4b6f0d19fb1540039459071283b0c6b89a9fdb6.zip
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.
Notes
Notes: svn path=/head/; revision=38324
Diffstat (limited to 'games/adventure/Makefile')
-rw-r--r--games/adventure/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/games/adventure/Makefile b/games/adventure/Makefile
index 5866a35a6e2f..07de907d661e 100644
--- a/games/adventure/Makefile
+++ b/games/adventure/Makefile
@@ -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>