diff options
author | jb <jb@FreeBSD.org> | 1998-08-15 07:56:07 +0000 |
---|---|---|
committer | jb <jb@FreeBSD.org> | 1998-08-15 07:56:07 +0000 |
commit | 72446d9a3a44730db6102bd8d60d3a45079270a7 (patch) | |
tree | a192ee5e48626637ca2e78c0d7068e34e5a624c1 /games | |
parent | d1c349611f70676b30e0784655cf961507d11fd5 (diff) | |
download | FreeBSD-src-72446d9a3a44730db6102bd8d60d3a45079270a7.zip FreeBSD-src-72446d9a3a44730db6102bd8d60d3a45079270a7.tar.gz |
Build the makedefs program static to avoid trying to use the shared
loader before it has been installed in an aout to elf transition build.
Diffstat (limited to 'games')
-rw-r--r-- | games/hack/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/games/hack/Makefile b/games/hack/Makefile index 5f0cf31..3c308f0 100644 --- a/games/hack/Makefile +++ b/games/hack/Makefile @@ -26,7 +26,7 @@ hack.onames.h: makedefs def.objects.h ./makedefs ${.CURDIR}/def.objects.h > hack.onames.h makedefs: makedefs.o - ${CC} ${CFLAGS} ${LDFLAGS} -o ${.TARGET} ${.ALLSRC} + ${CC} -static ${CFLAGS} ${LDFLAGS} -o ${.TARGET} ${.ALLSRC} beforeinstall: ${INSTALL} -c -o bin -g bin -m ${NOBINMODE} /dev/null \ |