From e4b6f0d19fb1540039459071283b0c6b89a9fdb6 Mon Sep 17 00:00:00 2001 From: John Birrell Date: Sat, 15 Aug 1998 07:46:35 +0000 Subject: [PATCH] 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. --- games/adventure/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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