From 408827f4d787d011ab811cfd58c5e5d08f849396 Mon Sep 17 00:00:00 2001 From: kstailey Date: Thu, 24 Jul 1997 16:51:24 +0000 Subject: respect INSTALL_STRIP=-s'' pr 188 --- gnu/usr.bin/cvs/Makefile.bsd-wrapper | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) (limited to 'gnu') diff --git a/gnu/usr.bin/cvs/Makefile.bsd-wrapper b/gnu/usr.bin/cvs/Makefile.bsd-wrapper index daa50c7182f..7ed5bcbb047 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.25 1997/06/23 22:20:24 kstailey Exp $ +# $OpenBSD: Makefile.bsd-wrapper,v 1.26 1997/07/24 16:51:23 kstailey Exp $ .include @@ -15,6 +15,12 @@ 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} @@ -22,10 +28,12 @@ all: config.status config: .FORCE -rm -f config.cache - sh ${.CURDIR}/configure --prefix=/usr ${KRB} + INSTALL_PROGRAM=$(INST_PROG) sh ${.CURDIR}/configure \ + --prefix=/usr ${KRB} config.status: - sh ${.CURDIR}/configure --prefix=/usr ${KRB} + INSTALL_PROGRAM=$(INST_PROG) sh ${.CURDIR}/configure \ + --prefix=/usr ${KRB} .ifdef NOMAN maninstall: -- cgit v1.2.3