From: Zooko O'Whielacronx <zooko@zooko.com>
Date: Sat, 22 Dec 2007 18:50:10 +0000 (-0700)
Subject: setup: allow shell built-ins "true" and "false" so that I can experiment with deb... 
X-Git-Tag: allmydata-tahoe-0.7.0~78
X-Git-Url: https://git.rkrishnan.org/%5B/%5D%20/uri/htmlfontify-example.html?a=commitdiff_plain;h=2de4c07d76cc81f41c0bca7d25e5f16a202b0f65;p=tahoe-lafs%2Ftahoe-lafs.git

setup: allow shell built-ins "true" and "false" so that I can experiment with deb builders on an OSX box.  ;-)
---

diff --git a/Makefile b/Makefile
index 99531576..865999a9 100644
--- a/Makefile
+++ b/Makefile
@@ -322,10 +322,10 @@ ifeq ($(findstring x-$(ARCH)-x,$(foreach arch,$(KNOWN_DEBIAN_ARCHES),"x-$(arch)-
 is-known-debian-arch:
 	@echo "ARCH must be set when using setup-deb or deb-ARCH"
 	@echo "I know how to handle:" $(KNOWN_DEBIAN_ARCHES)
-	/bin/false
+	false
 else
 is-known-debian-arch:
-	/bin/true
+	true
 endif
 
 ifndef TAHOE_ARCH