This is an automated email from the git hooks/post-receive script. x2go pushed a commit to branch feature/cleanup in repository x2goclient. commit 5ba56c49d4064fa51cab652f10dce2f9434c52f3 Author: Mihai Moldovan <ionic@ionic.de> Date: Mon Feb 16 03:17:13 2015 +0100 macbuild.sh: fix TOP_DIR handling. --- debian/changelog | 1 + macbuild.sh | 4 +++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index 89d464c..d7a68bc 100644 --- a/debian/changelog +++ b/debian/changelog @@ -232,6 +232,7 @@ x2goclient (4.0.3.2-0x2go1) unstable; urgency=medium - Add debug mode selector via DEBUG env variable to macbuild.sh. - Enable more debugging if needed: change -g flag to -g3 -ggdb3 -gdwarf-4. - Select stdlib on OS X based on the passed or default SDK value. + - Fix TOP_DIR handling in macbuild.sh. -- X2Go Release Manager <git-admin@x2go.org> Thu, 19 Feb 2015 12:49:22 +0100 diff --git a/macbuild.sh b/macbuild.sh index 642f6f3..603088a 100755 --- a/macbuild.sh +++ b/macbuild.sh @@ -1,6 +1,8 @@ #!/bin/sh NAME="x2goclient" -TOP_DIR="${PWD}" + +TOP_DIR="$(dirname "$0")" +[[ "${TOP_DIR}" == /* ]] || TOP_DIR="${PWD}/${TOP_DIR#./}" BUILD_DIR="${TOP_DIR}/build_client" APPBUNDLE="${BUILD_DIR}/${NAME}.app" DMGFILE="${BUILD_DIR}/${NAME}.dmg" -- Alioth's /srv/git/code.x2go.org/x2goclient.git//../..//_hooks_/post-receive-email on /srv/git/code.x2go.org/x2goclient.git