summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMats O Jansson <maja@cvs.openbsd.org>1996-07-26 14:40:45 +0000
committerMats O Jansson <maja@cvs.openbsd.org>1996-07-26 14:40:45 +0000
commit8a341513f18075362720586fc427669852301fdc (patch)
tree5f0d22adceff915f3de8a65cb11a9bcaed338ab7
parent882f4325922368dcbcf5b2641e6b96c51543251d (diff)
Don't try to install man pages if NOMAN is defined, it will not work!
-rw-r--r--gnu/lib/libg++/libg++/gperf/Makefile.bsd-wrapper6
1 files changed, 5 insertions, 1 deletions
diff --git a/gnu/lib/libg++/libg++/gperf/Makefile.bsd-wrapper b/gnu/lib/libg++/libg++/gperf/Makefile.bsd-wrapper
index 778def70736..59418b8ed77 100644
--- a/gnu/lib/libg++/libg++/gperf/Makefile.bsd-wrapper
+++ b/gnu/lib/libg++/libg++/gperf/Makefile.bsd-wrapper
@@ -1,4 +1,4 @@
-# $OpenBSD: Makefile.bsd-wrapper,v 1.5 1996/05/22 08:56:03 niklas Exp $
+# $OpenBSD: Makefile.bsd-wrapper,v 1.6 1996/07/26 14:40:44 maja Exp $
.if defined(OBJMACHINE)
OBJDIR= obj.${MACHINE}
@@ -55,7 +55,11 @@ $(STD_OBJDIR)/libstdc++.a:
$(GXX_OBJDIR)/libg++.a:
cd $(GXX_DIR); $(MAKE) -f Makefile.bsd-wrapper SUBDIR=
+.if !defined(NOMAN)
install: maninstall
+.else
+install:
+.endif
install ${COPY} ${STRIP} -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \
${PROG} ${DESTDIR}/usr/bin
@-cd $(.CURDIR); for i in gperf.info*; do \