diff options
author | Dale Rahn <drahn@cvs.openbsd.org> | 2005-09-16 23:20:52 +0000 |
---|---|---|
committer | Dale Rahn <drahn@cvs.openbsd.org> | 2005-09-16 23:20:52 +0000 |
commit | d36f8d2330d23674c94b61bcb72ff3861f495c72 (patch) | |
tree | 4be076eec8c90cab5d9b25598dd69c2a8d5dbac4 /libexec/ld.so/Makefile | |
parent | af3616ed51f4eb0fd16d93f503c40bc80f7f50c3 (diff) |
revert the debug enable.
Diffstat (limited to 'libexec/ld.so/Makefile')
-rw-r--r-- | libexec/ld.so/Makefile | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/libexec/ld.so/Makefile b/libexec/ld.so/Makefile index 73a0c71454d..bfc18099d48 100644 --- a/libexec/ld.so/Makefile +++ b/libexec/ld.so/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.26 2005/09/16 23:19:41 drahn Exp $ +# $OpenBSD: Makefile,v 1.27 2005/09/16 23:20:51 drahn Exp $ SUBDIR=ldconfig ldd VPATH=${.CURDIR}/../../lib/libc/string @@ -17,14 +17,12 @@ MAN= ld.so.1 .include "${.CURDIR}/${MACHINE_ARCH}/Makefile.inc" .PATH: ${.CURDIR}/${MACHINE_ARCH} -CFLAGS += -g CFLAGS += -Wall CFLAGS += -I${.CURDIR} -I${.CURDIR}/${MACHINE_ARCH} \ -Dstrsep=_dl_strsep INSTALL_STRIP= ELF_LDFLAGS+=--shared -Bsymbolic -ELF_LDFLAGS+=-g $(PROG): $(LD) -x -e _dl_start $(ELF_LDFLAGS) -o $(PROG) $(OBJS) $(LDADD) |