diff options
author | kstailey <kstailey@cvs.openbsd.org> | 1997-07-24 20:04:12 +0000 |
---|---|---|
committer | kstailey <kstailey@cvs.openbsd.org> | 1997-07-24 20:04:12 +0000 |
commit | 89c99a8fb8409b68cfa1d7c8e48358f1c19cb20d (patch) | |
tree | 325bf05673da8f7e52a7aa3c553c86b4905b4e67 /gnu/usr.bin/cvs | |
parent | 6789d89b2de777fed637106840f890f0297bf585 (diff) |
don't assume INSTALL_STRIP is set to `-s' pr 188
Diffstat (limited to 'gnu/usr.bin/cvs')
-rw-r--r-- | gnu/usr.bin/cvs/Makefile.bsd-wrapper | 16 |
1 files changed, 5 insertions, 11 deletions
diff --git a/gnu/usr.bin/cvs/Makefile.bsd-wrapper b/gnu/usr.bin/cvs/Makefile.bsd-wrapper index 7ed5bcbb047..25e4079b650 100644 --- a/gnu/usr.bin/cvs/Makefile.bsd-wrapper +++ b/gnu/usr.bin/cvs/Makefile.bsd-wrapper @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile.bsd-wrapper,v 1.26 1997/07/24 16:51:23 kstailey Exp $ +# $OpenBSD: Makefile.bsd-wrapper,v 1.27 1997/07/24 20:04:11 kstailey Exp $ .include <bsd.own.mk> @@ -15,12 +15,6 @@ KRB=--with-krb4=/usr KRB=--without-krb4 .endif -.if defined (INSTALL_STRIP) && ${INSTALL_STRIP} == "-s" -INST_PROG='/usr/bin/install -cs' -.else -INST_PROG='/usr/bin/install -c' -.endif - all: config.status ${MAKE} ${GNUCFLAGS} LDFLAGS=${LDSTATIC} @@ -28,12 +22,12 @@ all: config.status config: .FORCE -rm -f config.cache - INSTALL_PROGRAM=$(INST_PROG) sh ${.CURDIR}/configure \ - --prefix=/usr ${KRB} + INSTALL_PROGRAM="${INSTALL} ${INSTALL_COPY} ${INSTALL_STRIP}" \ + sh ${.CURDIR}/configure --prefix=/usr ${KRB} config.status: - INSTALL_PROGRAM=$(INST_PROG) sh ${.CURDIR}/configure \ - --prefix=/usr ${KRB} + INSTALL_PROGRAM="${INSTALL} ${INSTALL_COPY} ${INSTALL_STRIP}" \ + sh ${.CURDIR}/configure --prefix=/usr ${KRB} .ifdef NOMAN maninstall: |