[chirp_devel] [PATCH 0 of 1] Fix Mac .app so paths with spaces work. Fixes #00
This is related to the report on chirp_users. He hasn't made an issue yet, so I didn't fill in the big number in this commit message.
I haven't tested this change (not sure how), but I think it should allow for spaces in the directory chirp.app is stored in.
Tom KD7LXL
# HG changeset patch # User Tom Hayward tom@tomh.us # Date 1335063107 21600 # Node ID 18c8f983a8715e9eb2f097e6554e05089fc0a9ed # Parent 62a90f40fc3661655e30a0fe683dbce5ee5c1a20 Fix Mac .app so paths with spaces work. Fixes #00
diff -r 62a90f40fc36 -r 18c8f983a871 build/chirp.app/Contents/MacOS/chirp --- a/build/chirp.app/Contents/MacOS/chirp Thu Apr 19 09:03:48 2012 -0700 +++ b/build/chirp.app/Contents/MacOS/chirp Sat Apr 21 20:51:47 2012 -0600 @@ -12,4 +12,4 @@ PYTHON=/opt/kk7ds/bin/python2.7 fi
-exec $PYTHON ${LOCATION}/../Resources/chirp/chirpw +exec "$PYTHON" "${LOCATION}/../Resources/chirp/chirpw"
participants (1)
-
Tom Hayward