diff options
author | kstailey <kstailey@cvs.openbsd.org> | 1997-07-24 15:46:18 +0000 |
---|---|---|
committer | kstailey <kstailey@cvs.openbsd.org> | 1997-07-24 15:46:18 +0000 |
commit | 469b056795432a9a6b13a09925430242ff377638 (patch) | |
tree | 1516f073f98df3fa84a245a8e44b35fe8c318942 /gnu/usr.bin/texinfo | |
parent | a2bac5fac302a9d1f82a4646d8d4bd245695a0f5 (diff) |
optimize pr 188
Diffstat (limited to 'gnu/usr.bin/texinfo')
-rw-r--r-- | gnu/usr.bin/texinfo/Makefile.bsd-wrapper | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/gnu/usr.bin/texinfo/Makefile.bsd-wrapper b/gnu/usr.bin/texinfo/Makefile.bsd-wrapper index d2dcb71c215..37a6d639f06 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.13 1997/07/24 15:24:09 kstailey Exp $ +# $Id: Makefile.bsd-wrapper,v 1.14 1997/07/24 15:46:17 kstailey Exp $ INFODIR= infodir=${DESTDIR}/usr/share/info INFOPATH= DEFAULT_INFOPATH=/usr/local/info:/usr/share/info:. @@ -11,15 +11,11 @@ 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") +.if defined (INSTALL_STRIP) && ${INSTALL_STRIP} == "-s" INST_PROG='/usr/bin/install -cs' .else INST_PROG='/usr/bin/install -c' .endif -.endif all: config.status ${FSFMAKE} LDFLAGS=${LDSTATIC} |