diff options
author | jkh <jkh@FreeBSD.org> | 1995-04-22 00:08:06 +0000 |
---|---|---|
committer | jkh <jkh@FreeBSD.org> | 1995-04-22 00:08:06 +0000 |
commit | 80b7dd49cdf4958e29bdf3a5dfaf0dfcc6da394c (patch) | |
tree | 4e7db7c694f4992de6cf3c6c19ca198e4141c935 /Mk | |
parent | 1ad88b7a26e351d3729fcebba2a05e87f4eb22f2 (diff) | |
download | FreeBSD-ports-80b7dd49cdf4958e29bdf3a5dfaf0dfcc6da394c.zip FreeBSD-ports-80b7dd49cdf4958e29bdf3a5dfaf0dfcc6da394c.tar.gz |
Don't try to run the fake-pkg target if NO_PACKAGE is set.
Diffstat (limited to 'Mk')
-rw-r--r-- | Mk/bsd.port.mk | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Mk/bsd.port.mk b/Mk/bsd.port.mk index 7376e74..4d1414f 100644 --- a/Mk/bsd.port.mk +++ b/Mk/bsd.port.mk @@ -3,7 +3,7 @@ # bsd.port.mk - 940820 Jordan K. Hubbard. # This file is in the public domain. # -# $Id: bsd.port.mk,v 1.145 1995/04/22 00:01:26 jkh Exp $ +# $Id: bsd.port.mk,v 1.146 1995/04/22 00:05:46 jkh Exp $ # # Please view me with 4 column tabs! @@ -561,8 +561,10 @@ do-install: @(cd ${WRKSRC}; ${MAKE} ${MAKE_FLAGS} ${MAKEFILE} install.man) .endif .endif +.if !defined(NO_PACKAGE) @${MAKE} ${.MAKEFLAGS} fake-pkg .endif +.endif ################################################################ # Skeleton targets start here |