diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2003-04-11 23:48:04 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2003-04-11 23:48:04 +0000 |
commit | aa6a63973b532710eb333e9b5e7e31a1beb44b2f (patch) | |
tree | bdd8f63f90298b1dcc04c541550ade4e68d0c724 /gnu/usr.bin/rcs | |
parent | c92ae1890606b3f4e08f272eab0ae52c5ce10ac6 (diff) |
Don't need LDFLAGS=-s since we pass in INSTALL_STRIP
Diffstat (limited to 'gnu/usr.bin/rcs')
-rw-r--r-- | gnu/usr.bin/rcs/Makefile.bsd-wrapper | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gnu/usr.bin/rcs/Makefile.bsd-wrapper b/gnu/usr.bin/rcs/Makefile.bsd-wrapper index 2381ac887cf..a4f0ee7e2f4 100644 --- a/gnu/usr.bin/rcs/Makefile.bsd-wrapper +++ b/gnu/usr.bin/rcs/Makefile.bsd-wrapper @@ -1,11 +1,11 @@ -# $OpenBSD: Makefile.bsd-wrapper,v 1.16 2000/11/21 14:11:16 millert Exp $ +# $OpenBSD: Makefile.bsd-wrapper,v 1.17 2003/04/11 23:48:03 millert Exp $ MAN= man/ci.1 man/co.1 man/ident.1 man/merge.1 man/rcs.1 man/rcsclean.1 \ man/rcsdiff.1 man/rcsfile.5 man/rcsfreeze.1 man/rcsintro.1 \ man/rcsmerge.1 man/rlog.1 CLEANFILES= man/rcsfile.5 src/conf.h -LDFLAGS+= -s ${LDSTATIC} -GNUCFLAGS= CC="${CC}" CFLAGS="${CFLAGS} ${COPTS}" LDFLAGS="${LDFLAGS}" +GNUCFLAGS= CC="${CC}" CFLAGS="${CFLAGS} ${COPTS}" \ + LDFLAGS="${LDFLAGS} ${LDSTATIC}" all: config.status rcsfile.5 ${MAKE} ${GNUCFLAGS} |