svn commit: r350823 - head/Mk
Bryan Drewery
bdrewery at FreeBSD.org
Thu Apr 10 17:03:54 UTC 2014
Author: bdrewery
Date: Thu Apr 10 17:03:54 2014
New Revision: 350823
URL: http://svnweb.freebsd.org/changeset/ports/350823
QAT: https://qat.redports.org/buildarchive/r350823/
Log:
- Fix error handling in check-config, 'exit' is not a command.
make: exec(exit) failed (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 Thu Apr 10 17:02:33 2014 (r350822)
+++ head/Mk/bsd.port.mk Thu Apr 10 17:03:54 2014 (r350823)
@@ -5962,7 +5962,7 @@ _CHECK_CONFIG_ERROR= true
.if !target(check-config)
check-config: _check-config
.if !empty(_CHECK_CONFIG_ERROR)
- @exit 1
+ @${FALSE}
.endif
.endif # check-config
More information about the svn-ports-all
mailing list