This is an automated email from the git hooks/post-receive script. x2go pushed a commit to branch feature/cleanup in repository x2goclient. commit 25e0844c16439bb83fac03280fdac3e77b2c36c6 Author: Mihai Moldovan <ionic@ionic.de> Date: Sat Feb 14 05:35:02 2015 +0100 macbuild.sh: define TOP_DIR variable -- set to $PWD. --- debian/changelog | 1 + macbuild.sh | 10 ++++++---- 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/debian/changelog b/debian/changelog index 6838152..0c49152 100644 --- a/debian/changelog +++ b/debian/changelog @@ -175,6 +175,7 @@ x2goclient (4.0.3.2-0x2go1) UNRELEASED; urgency=medium - Whitespace fix in Info.plist. - Use more quoting and curly braces for referencing variables in macbuild.sh. + - Define TOP_DIR variable in macbuild.sh -- set to $PWD. -- Mike Gabriel <mike.gabriel@das-netzwerkteam.de> Thu, 27 Nov 2014 12:01:43 +0100 diff --git a/macbuild.sh b/macbuild.sh index 729ec13..fafce18 100755 --- a/macbuild.sh +++ b/macbuild.sh @@ -1,9 +1,11 @@ #!/bin/sh NAME="x2goclient" -APPBUNDLE="./${NAME}.app" -DMGFILE="./${NAME}.dmg" -PROJECT="./${NAME}.pro" -PKG_DMG="./pkg-dmg" +TOP_DIR="${PWD}" +BUILD_DIR="${TOP_DIR}/build_client" +APPBUNDLE="${BUILD_DIR}/${NAME}.app" +DMGFILE="${BUILD_DIR}/${NAME}.dmg" +PROJECT="${TOP_DIR}/${NAME}.pro" +PKG_DMG="${TOP_DIR}/pkg-dmg" NXPROXY="$(which nxproxy)" LIBXCOMP="libXcomp.3.dylib" -- Alioth's /srv/git/_hooks_/post-receive-email on /srv/git/code.x2go.org/x2goclient.git