diff options
author | Dale Rahn <drahn@cvs.openbsd.org> | 2002-10-21 16:28:19 +0000 |
---|---|---|
committer | Dale Rahn <drahn@cvs.openbsd.org> | 2002-10-21 16:28:19 +0000 |
commit | 0b7a6f7a73b5ea695f5c0bb4e11019c4111d617b (patch) | |
tree | 3e36e5ce87ca87796867ca99e82e0385d3bb2cdb /libexec | |
parent | 298b9993cdff3d4fe4aa24d8dadb10368aafd4fa (diff) |
Remove the -D__PIC__ from this, it does not affect the building
of any current platform, so makes no sense. pointed out by Per.
Tested on alpha, i386, macppc, sparc, sparc64 (binary diff).
Diffstat (limited to 'libexec')
-rw-r--r-- | libexec/ld.so/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libexec/ld.so/Makefile b/libexec/ld.so/Makefile index b2f7fa47d6d..1c2bac92954 100644 --- a/libexec/ld.so/Makefile +++ b/libexec/ld.so/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.17 2002/08/21 15:40:30 art Exp $ +# $OpenBSD: Makefile,v 1.18 2002/10/21 16:28:18 drahn Exp $ SUBDIR=ldconfig ldd VPATH=${.CURDIR}/../../lib/libc/string:${.CURDIR}/../../sys/lib/libsa @@ -13,7 +13,7 @@ MAN= ld.so.8 .PATH: ${.CURDIR}/${MACHINE_ARCH} CFLAGS += -Werror -Wall -CFLAGS += -I${.CURDIR} -D__PIC__ -I${.CURDIR}/${MACHINE_ARCH} \ +CFLAGS += -I${.CURDIR} -I${.CURDIR}/${MACHINE_ARCH} \ -Dstrsep=_dl_strsep -Dstrtol=_dl_strtol INSTALL_STRIP= |