diff options
author | asami <asami@FreeBSD.org> | 1995-05-12 08:44:12 +0000 |
---|---|---|
committer | asami <asami@FreeBSD.org> | 1995-05-12 08:44:12 +0000 |
commit | cd0fdb9f9aa0da76723d352e1ed0bb56f314b472 (patch) | |
tree | e8c21295986389b31265f31deee7141137e529b0 /Mk | |
parent | 73e0c2a5e8d608175e1763bb9ba14fee83e78da5 (diff) | |
download | FreeBSD-ports-cd0fdb9f9aa0da76723d352e1ed0bb56f314b472.zip FreeBSD-ports-cd0fdb9f9aa0da76723d352e1ed0bb56f314b472.tar.gz |
When NO_PACKAGE is set, "package" and "repackage" don't depend on
"install". In other words, they won't do anything at all.
Diffstat (limited to 'Mk')
-rw-r--r-- | Mk/bsd.port.mk | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Mk/bsd.port.mk b/Mk/bsd.port.mk index 6fa0a28..03c8331 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.158 1995/05/12 07:32:59 asami Exp $ +# $Id: bsd.port.mk,v 1.159 1995/05/12 07:43:48 asami Exp $ # # Please view me with 4 column tabs! @@ -380,11 +380,11 @@ build: configure @${TOUCH} ${TOUCH_FLAGS} ${BUILD_COOKIE} .endif .if defined(NO_PACKAGE) && !target(package) -package: install +package: @${DO_NADA} .endif .if defined(NO_PACKAGE) && !target(repackage) -repackage: install +repackage: @${DO_NADA} .endif .if defined(NO_INSTALL) && !target(install) |