diff options
author | obrien <obrien@FreeBSD.org> | 1997-11-16 10:14:26 +0800 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 1997-11-16 10:14:26 +0800 |
commit | a6a50fda8e393a25a2227cfe7fed4b411f768cd2 (patch) | |
tree | d5d1d3700632f28eda02840e6d40fa9f13bc78c7 /emulators/simh | |
parent | f3e61e4586797d337a7a2d060b526549c03f3d47 (diff) | |
download | freebsd-ports-gnome-a6a50fda8e393a25a2227cfe7fed4b411f768cd2.tar.gz freebsd-ports-gnome-a6a50fda8e393a25a2227cfe7fed4b411f768cd2.tar.zst freebsd-ports-gnome-a6a50fda8e393a25a2227cfe7fed4b411f768cd2.zip |
Don't install docs if NOPORTDOCS is set.
Diffstat (limited to 'emulators/simh')
-rw-r--r-- | emulators/simh/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/emulators/simh/Makefile b/emulators/simh/Makefile index e7c8e79be347..d999e0ec0a43 100644 --- a/emulators/simh/Makefile +++ b/emulators/simh/Makefile @@ -3,7 +3,7 @@ # Date created: 7 November 1997 # Whom: jraynard # -# $Id: Makefile,v 1.1.1.1 1997/11/08 20:33:00 jraynard Exp $ +# $Id: Makefile,v 1.2 1997/11/10 09:17:57 asami Exp $ # DISTNAME= sim_2.3 @@ -31,7 +31,9 @@ do-install: ${INSTALL_PROGRAM} ${WRKDIR}/pdp9 ${PREFIX}/bin ${INSTALL_PROGRAM} ${WRKDIR}/pdp11 ${PREFIX}/bin ${INSTALL_PROGRAM} ${WRKDIR}/pdp15 ${PREFIX}/bin +.if !defined(NOPORTDOCS) @${MKDIR} ${PREFIX}/share/doc/sim && ${INSTALL_DATA} ${WRKDIR}/simh_doc.txt \ ${PREFIX}/share/doc/sim +.endif .include <bsd.port.mk> |