diff options
author | asami <asami@FreeBSD.org> | 1995-05-13 23:37:16 +0000 |
---|---|---|
committer | asami <asami@FreeBSD.org> | 1995-05-13 23:37:16 +0000 |
commit | e8007e4e0947cf579dc772b46407cafe58b0e3c9 (patch) | |
tree | 2f9c251c26b0a6cf2414e755010e48092c486b51 /share | |
parent | cf6b207e9dcedad8dcfe450085bf14cea5b4253f (diff) | |
download | FreeBSD-src-e8007e4e0947cf579dc772b46407cafe58b0e3c9.zip FreeBSD-src-e8007e4e0947cf579dc772b46407cafe58b0e3c9.tar.gz |
Don't conditionalize fake-pkg on NO_PACKAGE.
Diffstat (limited to 'share')
-rw-r--r-- | share/mk/bsd.port.mk | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/share/mk/bsd.port.mk b/share/mk/bsd.port.mk index f42ea4f..46a1276 100644 --- a/share/mk/bsd.port.mk +++ b/share/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.160 1995/05/12 08:44:12 asami Exp $ +# $Id: bsd.port.mk,v 1.161 1995/05/13 05:37:45 asami Exp $ # # Please view me with 4 column tabs! @@ -775,9 +775,7 @@ ${INSTALL_COOKIE}: DEPENDS="${DEPENDS}" X11BASE=${X11BASE} \ sh ${SCRIPTDIR}/post-install; \ fi -.if !defined(NO_PACKAGE) @${MAKE} ${.MAKEFLAGS} fake-pkg -.endif @${TOUCH} ${TOUCH_FLAGS} ${INSTALL_COOKIE} .endif @@ -1110,7 +1108,6 @@ describe: # accordance to the @pkgdep directive in the packing lists .if !target(fake-pkg) -.if !defined(NO_PACKAGE) fake-pkg: @if [ ! -f ${PKGDIR}/PLIST -o ! -f ${PKGDIR}/COMMENT -o ! -f ${PKGDIR}/DESCR ]; then echo "** Missing package files for ${PKGNAME} - installation not recorded."; exit 1; fi @if [ ! -d ${PKG_DBDIR} ]; then rm -f ${PKG_DBDIR}; mkdir -p ${PKG_DBDIR}; fi @@ -1132,7 +1129,6 @@ fake-pkg: ${ECHO_MSG} " this port again to upgrade it properly."; \ fi .endif -.endif # Depend is generally meaningless for arbitrary ports, but if someone wants # one they can override this. This is just to catch people who've gotten into |