diff options
author | asami <asami@FreeBSD.org> | 1995-11-18 00:49:40 +0800 |
---|---|---|
committer | asami <asami@FreeBSD.org> | 1995-11-18 00:49:40 +0800 |
commit | 93ef46a132303df61b9beeeea9c286998e6fa560 (patch) | |
tree | 389839a6379c0c5981e224e6bd3cb96ac2bf1c71 /Mk | |
parent | d4f042583b51f7ac9ee5df289138384044677120 (diff) | |
download | freebsd-ports-gnome-93ef46a132303df61b9beeeea9c286998e6fa560.tar.gz freebsd-ports-gnome-93ef46a132303df61b9beeeea9c286998e6fa560.tar.zst freebsd-ports-gnome-93ef46a132303df61b9beeeea9c286998e6fa560.zip |
Use NO_MTREE, not !USE_X11 && !USE_IMAKE, to determine package args.
NO_MTREE should work as advertised (for both direct installation and
pkg_add) now.
Diffstat (limited to 'Mk')
-rw-r--r-- | Mk/bsd.port.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Mk/bsd.port.mk b/Mk/bsd.port.mk index f35946010f75..1d7340bbe508 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.183 1995/10/11 09:25:58 asami Exp $ +# $Id: bsd.port.mk,v 1.186 1995/10/17 20:58:08 asami Exp $ # # Please view me with 4 column tabs! @@ -312,7 +312,7 @@ PKG_ARGS+= -k ${PKGDIR}/DEINSTALL .if exists(${PKGDIR}/REQ) PKG_ARGS+= -r ${PKGDIR}/REQ .endif -.if !defined(USE_X11) && !defined(USE_IMAKE) && defined(MTREE_LOCAL) +.if !defined(NO_MTREE) && defined(MTREE_LOCAL) PKG_ARGS+= -m ${MTREE_LOCAL} .endif .endif |