Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 10 Apr 2014 17:03:54 +0000 (UTC)
From:      Bryan Drewery <bdrewery@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r350823 - head/Mk
Message-ID:  <201404101703.s3AH3seo036705@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201404101703.s3AH3seo036705>