diff options
author | Oleg Safiullin <form@cvs.openbsd.org> | 1998-12-18 12:00:47 +0000 |
---|---|---|
committer | Oleg Safiullin <form@cvs.openbsd.org> | 1998-12-18 12:00:47 +0000 |
commit | 948057573f78d16f1be78c2d578aa5cb0fca9a45 (patch) | |
tree | 3b35bee8aeb7e41f735c358af92d9b8ae34965c6 /share/mk/bsd.port.mk | |
parent | 771cd4d45afd115c066de4b2682205453eac6929 (diff) |
make plist: do not add files from just installed ports (we wepend on) to PLIST.
Diffstat (limited to 'share/mk/bsd.port.mk')
-rw-r--r-- | share/mk/bsd.port.mk | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/share/mk/bsd.port.mk b/share/mk/bsd.port.mk index 35b3f5e7d33..c58f8095297 100644 --- a/share/mk/bsd.port.mk +++ b/share/mk/bsd.port.mk @@ -1,6 +1,6 @@ #-*- mode: Fundamental; tab-width: 4; -*- # ex:ts=4 -# $OpenBSD: bsd.port.mk,v 1.55 1998/12/17 18:25:06 espie Exp $ +# $OpenBSD: bsd.port.mk,v 1.56 1998/12/18 12:00:46 form Exp $ # # bsd.port.mk - 940820 Jordan K. Hubbard. # This file is in the public domain. @@ -31,7 +31,7 @@ NetBSD_MAINTAINER= agc@netbsd.org # NEED_VERSION: we need at least this version of bsd.port.mk for this # port to build -FULL_REVISION=$$OpenBSD: bsd.port.mk,v 1.55 1998/12/17 18:25:06 espie Exp $$ +FULL_REVISION=$$OpenBSD: bsd.port.mk,v 1.56 1998/12/18 12:00:46 form Exp $$ .if defined(NEED_VERSION) VERSION_REVISION=${FULL_REVISION:M[0-9]*.*} @@ -265,11 +265,11 @@ REVISION_NEEDED=${NEED_VERSION:C/.*\.//} # # Motif support: # -# USE_MOTIF - Set this in your port if it requires Motif or Lesstif. -# It will be built using Lesstif port unless Motif libraries -# found or HAVE_MOTIF is defined. See also REQUIRES_MOTIF. +# USE_MOTIF - Set this in your port if it requires Motif or Lesstif. +# It will be built using Lesstif port unless Motif libraries +# found or HAVE_MOTIF is defined. See also REQUIRES_MOTIF. # -# REQUIRES_MOTIF - Set this in your port if it requires Motif. It will be +# REQUIRES_MOTIF- Set this in your port if it requires Motif. It will be # built only if HAVE_MOTIF is set. # HAVE_MOTIF - If set, means system has Motif. Typically set in # /etc/make.conf (FreeBSD) or @@ -1435,6 +1435,7 @@ _PORT_USE: .USE @cd ${.CURDIR} && ${MAKE} ${.MAKEFLAGS} run-depends lib-depends .endif .if make(real-install) + @touch ${INSTALL_PRE_COOKIE} .if !defined(NO_MTREE) @if [ `id -u` = 0 ]; then \ if [ ! -f ${MTREE_FILE} ]; then \ @@ -1540,7 +1541,6 @@ ${CONFIGURE_COOKIE}: ${BUILD_COOKIE}: @cd ${.CURDIR} && ${MAKE} ${.MAKEFLAGS} real-build ${INSTALL_COOKIE}: - @touch ${INSTALL_PRE_COOKIE} @cd ${.CURDIR} && ${MAKE} ${.MAKEFLAGS} real-install ${PACKAGE_COOKIE}: @cd ${.CURDIR} && ${MAKE} ${.MAKEFLAGS} real-package |