This is an automated email from the git hooks/post-receive script. x2go pushed a commit to branch feature/cleanup in repository x2goclient. commit 84a03902b16092c47152f9de28e9af1b53f71076 Author: Mihai Moldovan <ionic@ionic.de> Date: Mon Feb 16 03:21:36 2015 +0100 macbuild.sh: also accept "FALSE" and "false" as binary values. --- debian/changelog | 1 + macbuild.sh | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index 22f2db3..07158e2 100644 --- a/debian/changelog +++ b/debian/changelog @@ -208,6 +208,7 @@ x2goclient (4.0.3.2-0x2go1) UNRELEASED; urgency=medium - Select stdlib on OS X based on the passed or default SDK value. - Fix TOP_DIR handling in macbuild.sh. - Switch to BASH interpreter for macbuild.sh. + - Also accept "FALSE" and "false" as binary values in macbuild.sh. -- Mike Gabriel <mike.gabriel@das-netzwerkteam.de> Thu, 27 Nov 2014 12:01:43 +0100 diff --git a/macbuild.sh b/macbuild.sh index 921b2a4..ca15cdf 100755 --- a/macbuild.sh +++ b/macbuild.sh @@ -20,7 +20,7 @@ LIBZ="libz.1.dylib" : DEBUG="${DEBUG:-"0"}" case "${DEBUG}" in - ("0"|"no"|""|"No"|"nO"|"NO") BUILD_MODE="release";; + ("0"|"no"|""|"No"|"nO"|"NO"|"false"|"FALSE") BUILD_MODE="release";; (*) BUILD_MODE="debug";; esac -- Alioth's /srv/git/_hooks_/post-receive-email on /srv/git/code.x2go.org/x2goclient.git