diff options
author | marcel <marcel@FreeBSD.org> | 2004-02-13 04:43:41 +0000 |
---|---|---|
committer | marcel <marcel@FreeBSD.org> | 2004-02-13 04:43:41 +0000 |
commit | 9ce72c836f87b47bc687343c9aeee6b1bfab65c8 (patch) | |
tree | aba846e7d6a47ba5be4f4ebd4681f2b095a80e15 | |
parent | 5b9992a0bff11b64a43fe188142f1fadaa4faa2b (diff) | |
download | FreeBSD-src-9ce72c836f87b47bc687343c9aeee6b1bfab65c8.zip FreeBSD-src-9ce72c836f87b47bc687343c9aeee6b1bfab65c8.tar.gz |
o Don't build with -fpic. It's not needed and inconsistent with how
other constributions are compiled.
o Remove powerpc specific additions to CFLAGS.
-rw-r--r-- | sys/boot/efi/libefi/Makefile | 5 | ||||
-rw-r--r-- | sys/boot/ia64/libski/Makefile | 5 |
2 files changed, 0 insertions, 10 deletions
diff --git a/sys/boot/efi/libefi/Makefile b/sys/boot/efi/libefi/Makefile index ee9a429..9ecd4c7 100644 --- a/sys/boot/efi/libefi/Makefile +++ b/sys/boot/efi/libefi/Makefile @@ -12,7 +12,6 @@ SRCS+= delay.c efifs.c efinet.c elf_freebsd.c bootinfo.c pal.S SRCS+= efifpswa.c .endif -CFLAGS+= -fpic CFLAGS+= -I${.CURDIR}/../include CFLAGS+= -I${.CURDIR}/../include/${MACHINE_ARCH} CFLAGS+= -I${.CURDIR}/../../../../lib/libstand @@ -20,10 +19,6 @@ CFLAGS+= -I${.CURDIR}/../../../../lib/libstand # Pick up the bootstrap header for some interface items CFLAGS+= -I${.CURDIR}/../../common -.if ${MACHINE_ARCH} == "powerpc" -CFLAGS+= -msoft-float -.endif - .if defined(BOOT_DISK_DEBUG) # Make the disk code more talkative CFLAGS+= -DDISK_DEBUG diff --git a/sys/boot/ia64/libski/Makefile b/sys/boot/ia64/libski/Makefile index 310d21e..caba74e 100644 --- a/sys/boot/ia64/libski/Makefile +++ b/sys/boot/ia64/libski/Makefile @@ -7,7 +7,6 @@ SRCS= skiconsole.c time.c copy.c devicename.c module.c exit.c SRCS+= delay.c skifs.c elf_freebsd.c bootinfo.c ssc.c SRCS+= acpi_stub.c efi_stub.c pal_stub.S sal_stub.c -CFLAGS+= -fpic CFLAGS+= -I${.CURDIR}/../../../../lib/libstand CFLAGS+= -I${.CURDIR}/../../efi/include CFLAGS+= -I${.CURDIR}/../../efi/include/${MACHINE_ARCH} @@ -15,10 +14,6 @@ CFLAGS+= -I${.CURDIR}/../../efi/include/${MACHINE_ARCH} # Pick up the bootstrap header for some interface items CFLAGS+= -I${.CURDIR}/../../common -I${.CURDIR}/../../.. -.if ${MACHINE_ARCH} == "powerpc" -CFLAGS+= -msoft-float -.endif - .if defined(BOOT_DISK_DEBUG) # Make the disk code more talkative CFLAGS+= -DDISK_DEBUG |