diff options
author | bdrewery <bdrewery@FreeBSD.org> | 2014-04-11 01:03:54 +0800 |
---|---|---|
committer | bdrewery <bdrewery@FreeBSD.org> | 2014-04-11 01:03:54 +0800 |
commit | 044cc59a346f415859aa15f7bad87585471ca9ca (patch) | |
tree | 5c5131c620d3ed83f6b2bcd24354f0cd6f73ec96 | |
parent | fd472f054bf0cfc436891c3c64f64df25d1058a1 (diff) | |
download | freebsd-ports-gnome-044cc59a346f415859aa15f7bad87585471ca9ca.tar.gz freebsd-ports-gnome-044cc59a346f415859aa15f7bad87585471ca9ca.tar.zst freebsd-ports-gnome-044cc59a346f415859aa15f7bad87585471ca9ca.zip |
- Fix error handling in check-config, 'exit' is not a command.
make: exec(exit) failed (No such file or directory)
With hat: portmgr
-rw-r--r-- | Mk/bsd.port.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Mk/bsd.port.mk b/Mk/bsd.port.mk index 2297ffcb41cb..10b5ed6fcd25 100644 --- a/Mk/bsd.port.mk +++ b/Mk/bsd.port.mk @@ -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 |