diff options
author | ache <ache@FreeBSD.org> | 1993-11-16 02:02:05 +0000 |
---|---|---|
committer | ache <ache@FreeBSD.org> | 1993-11-16 02:02:05 +0000 |
commit | cf434a6bef8ce9b225e91395660accb05f218eb8 (patch) | |
tree | 03a94e1252874ae09b3debdb3c4b7cab09b7f66e /sys/i386/boot | |
parent | 53f348b4effce4899eb605e2bd5be06570b34b5b (diff) | |
download | FreeBSD-src-cf434a6bef8ce9b225e91395660accb05f218eb8.zip FreeBSD-src-cf434a6bef8ce9b225e91395660accb05f218eb8.tar.gz |
We don't want shared boot, so -Bstatic added to ld options
Diffstat (limited to 'sys/i386/boot')
-rw-r--r-- | sys/i386/boot/Makefile | 4 | ||||
-rw-r--r-- | sys/i386/boot/biosboot/Makefile | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/sys/i386/boot/Makefile b/sys/i386/boot/Makefile index 2e4f162..7fad582 100644 --- a/sys/i386/boot/Makefile +++ b/sys/i386/boot/Makefile @@ -20,7 +20,7 @@ # the rights to redistribute these changes. # # from: Mach, Revision 2.2 92/04/04 11:33:46 rpd -# $Id$ +# $Id: Makefile,v 1.3 1993/10/16 19:11:23 rgrimes Exp $ # wd0: @@ -48,7 +48,7 @@ OBJS = start.o table.o boot2.o boot.o asm.o bios.o io.o disk.o sys.o $(CC) $(CFLAGS) -c $< boot: $(OBJS) - $(LD) -N -T 0 -o boot $(OBJS) $(LIBS) + $(LD) -Bstatic -N -T 0 -o boot $(OBJS) $(LIBS) cp boot boot.sym @strip boot @sh ${.CURDIR}/rmaouthdr boot boot.tmp diff --git a/sys/i386/boot/biosboot/Makefile b/sys/i386/boot/biosboot/Makefile index 2e4f162..7fad582 100644 --- a/sys/i386/boot/biosboot/Makefile +++ b/sys/i386/boot/biosboot/Makefile @@ -20,7 +20,7 @@ # the rights to redistribute these changes. # # from: Mach, Revision 2.2 92/04/04 11:33:46 rpd -# $Id$ +# $Id: Makefile,v 1.3 1993/10/16 19:11:23 rgrimes Exp $ # wd0: @@ -48,7 +48,7 @@ OBJS = start.o table.o boot2.o boot.o asm.o bios.o io.o disk.o sys.o $(CC) $(CFLAGS) -c $< boot: $(OBJS) - $(LD) -N -T 0 -o boot $(OBJS) $(LIBS) + $(LD) -Bstatic -N -T 0 -o boot $(OBJS) $(LIBS) cp boot boot.sym @strip boot @sh ${.CURDIR}/rmaouthdr boot boot.tmp |