svn commit: r349391 - head/Mk
Bryan Drewery
bdrewery at FreeBSD.org
Fri Mar 28 04:47:53 UTC 2014
Author: bdrewery
Date: Fri Mar 28 04:47:53 2014
New Revision: 349391
URL: http://svnweb.freebsd.org/changeset/ports/349391
QAT: https://qat.redports.org/buildarchive/r349391/
Log:
- Fix error running 'make stage' when NO_STAGE is set:
touch: /usr/ports/mail/qmail/work/.stage_done.qmail._var_qmail: No such file or directory
With hat: portmgr
Modified:
head/Mk/bsd.port.mk
Modified: head/Mk/bsd.port.mk
==============================================================================
--- head/Mk/bsd.port.mk Fri Mar 28 04:32:25 2014 (r349390)
+++ head/Mk/bsd.port.mk Fri Mar 28 04:47:53 2014 (r349391)
@@ -3174,6 +3174,13 @@ build: configure
@${TOUCH} ${TOUCH_FLAGS} ${BUILD_COOKIE}
.endif
+# Disable staging. Be non-fatal here as some scripts may just call it as a
+# matter of correctness in their ordering.
+.if defined(NO_STAGE) && !target(stage)
+stage:
+ @${ECHO_MSG} "===> This port does not yet support staging"
+.endif
+
# Disable install
.if defined(NO_INSTALL) && !target(do-install)
do-install:
More information about the svn-ports-all
mailing list