1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-10-20 02:38:43 +00:00

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.
This commit is contained in:
Satoshi Asami 1995-11-17 16:49:40 +00:00
parent 6dcfd07215
commit df4f0253cd
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=12346

View File

@ -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