diff options
author | kstailey <kstailey@cvs.openbsd.org> | 1997-07-24 15:24:10 +0000 |
---|---|---|
committer | kstailey <kstailey@cvs.openbsd.org> | 1997-07-24 15:24:10 +0000 |
commit | a2bac5fac302a9d1f82a4646d8d4bd245695a0f5 (patch) | |
tree | 133589627716b9c93f0cbb531d89e32ff424e5cf /gnu/usr.bin | |
parent | 0c3a80cde1c923303deace712de69eb0fd5b2db0 (diff) |
don't crap out if DEBUG is set pr 188
Diffstat (limited to 'gnu/usr.bin')
-rw-r--r-- | gnu/usr.bin/texinfo/Makefile.bsd-wrapper | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/gnu/usr.bin/texinfo/Makefile.bsd-wrapper b/gnu/usr.bin/texinfo/Makefile.bsd-wrapper index bd71b189bb1..d2dcb71c215 100644 --- a/gnu/usr.bin/texinfo/Makefile.bsd-wrapper +++ b/gnu/usr.bin/texinfo/Makefile.bsd-wrapper @@ -1,4 +1,4 @@ -# $Id: Makefile.bsd-wrapper,v 1.12 1997/07/24 15:14:01 kstailey Exp $ +# $Id: Makefile.bsd-wrapper,v 1.13 1997/07/24 15:24:09 kstailey Exp $ INFODIR= infodir=${DESTDIR}/usr/share/info INFOPATH= DEFAULT_INFOPATH=/usr/local/info:/usr/share/info:. @@ -11,11 +11,15 @@ FSFMAKE= ${MAKE} SUBDIRS="$(SUBDIRS)" $(GNUCFLAGS) $(INFODIR) $(INFOPATH) .include <bsd.own.mk> +.ifndef INSTALL_STRIP +INST_PROG='/usr/bin/install -c' +.else .if (${INSTALL_STRIP} == "-s") INST_PROG='/usr/bin/install -cs' .else INST_PROG='/usr/bin/install -c' .endif +.endif all: config.status ${FSFMAKE} LDFLAGS=${LDSTATIC} |