diff --git a/Building/MacOS/finalize_plist b/Building/MacOS/finalize_plist index 4981278e..4d1fc30a 100755 --- a/Building/MacOS/finalize_plist +++ b/Building/MacOS/finalize_plist @@ -12,6 +12,12 @@ if [[ ! -f ${PLIST} ]]; then exit 128 fi +# We have to do this here because qmake truncates the version and because its template +# doesn't rebuild Info.plist when VERSION changes. +VERSION=`awk '/#define VERSION / { gsub(/"/, "", $3); print $3 }' ${SRC}/VERSION` || exit +/usr/libexec/PlistBuddy -c "Set CFBundleGetInfoString ${VERSION}" ${PLIST} +/usr/libexec/PlistBuddy -c "Set CFBundleShortVersionString ${VERSION}" ${PLIST} + GIT_REVISION=`awk '/#define GIT_REVISION / { gsub(/"/, "", $3); print $3 }' ${SRC}/git_info.h` if [[ ${GIT_REVISION} != "" ]]; then /usr/libexec/PlistBuddy -c "Add GitRevision string ${GIT_REVISION}" ${PLIST} 2>/dev/null