summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbsiegert <bsiegert@pkgsrc.org>2011-08-16 20:08:18 +0000
committerbsiegert <bsiegert@pkgsrc.org>2011-08-16 20:08:18 +0000
commite664e016366fab1e1b8709d23c57068b14653089 (patch)
tree78bf14bc7d0c68574bb52c9452ac389f05509c21
parent81ad3795703869ce0ff7a6deda930026f0f6919a (diff)
downloadpkgsrc-e664e016366fab1e1b8709d23c57068b14653089.tar.gz
false is /usr/bin/false, not "exit 1". These two are not the same thing.
This fixes the build of pkg-config on MirBSD, which broke 5125 other packages during the last bulk build.
-rw-r--r--mk/tools/tools.MirBSD.mk4
1 files changed, 2 insertions, 2 deletions
diff --git a/mk/tools/tools.MirBSD.mk b/mk/tools/tools.MirBSD.mk
index 104b8b0c9fe..152c357140d 100644
--- a/mk/tools/tools.MirBSD.mk
+++ b/mk/tools/tools.MirBSD.mk
@@ -1,4 +1,4 @@
-# $NetBSD: tools.MirBSD.mk,v 1.1 2011/01/23 19:07:26 agc Exp $
+# $NetBSD: tools.MirBSD.mk,v 1.2 2011/08/16 20:08:18 bsiegert Exp $
#
# System-supplied tools for the MirOS operating system.
@@ -21,7 +21,7 @@ TOOLS_PLATFORM.echo?= echo # shell builtin
TOOLS_PLATFORM.egrep?= /usr/bin/egrep
TOOLS_PLATFORM.env?= /usr/bin/env
TOOLS_PLATFORM.expr?= /bin/expr
-TOOLS_PLATFORM.false?= exit 1
+TOOLS_PLATFORM.false?= /usr/bin/false
TOOLS_PLATFORM.fgrep?= /usr/bin/fgrep
TOOLS_PLATFORM.file?= /usr/bin/file
TOOLS_PLATFORM.find?= /usr/bin/find