diff options
author | Cristian Ionescu-Idbohrn <cristian.ionescu-idbohrn@axis.com> | 2013-02-17 00:09:28 +0100 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2013-02-16 15:43:11 -0800 |
commit | 576d5a22cac0dbb8315012eb0ea93884be385cda (patch) | |
tree | f990b313a8eb5985e591a22184bbaf0b82263d3a /packaging/macosx | |
parent | 727ee3aa980d505b0381ab3a0e574ca5d7094451 (diff) | |
download | subsurface-576d5a22cac0dbb8315012eb0ea93884be385cda.tar.gz |
Remove useless quotes.
Signed-off-by: Cristian Ionescu-Idbohrn <cristian.ionescu-idbohrn@axis.com>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'packaging/macosx')
-rwxr-xr-x | packaging/macosx/make-package.sh | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/packaging/macosx/make-package.sh b/packaging/macosx/make-package.sh index c9558b36f..9c21b3a79 100755 --- a/packaging/macosx/make-package.sh +++ b/packaging/macosx/make-package.sh @@ -11,15 +11,15 @@ # adjust to your install location of gtk-mac-bundler. I appear to need at # least 0.7.2 -BUNDLER="../.local/bin/gtk-mac-bundler" -BUNDLER_SRC="${HOME}/gtk-mac-bundler" +BUNDLER=../.local/bin/gtk-mac-bundler +BUNDLER_SRC=${HOME}/gtk-mac-bundler # install location of yourway-create-dmg -DMGCREATE="../yoursway-create-dmg/create-dmg" +DMGCREATE=../yoursway-create-dmg/create-dmg # This is the directory into which MacPorts, libdivecomputer and all the # other components have been installed -PREFIX="/Applications/Subsurface.app/Contents/Resources" +PREFIX=/Applications/Subsurface.app/Contents/Resources INFOPLIST=./packaging/macosx/Info.plist @@ -29,7 +29,7 @@ VERSION=$(./scripts/get-version darwin) # gtk-mac-bundler allegedly supports signing by setting this environment # variable, but this fails as we change the shared objects below and all # the signatures become invalid. -# export APPLICATION_CERT="Dirk" +# export APPLICATION_CERT=Dirk # force rebuilding of Info.plist rm ${INFOPLIST} |