From b5d5be6475974ffa940732ee796dc9bdfc72a817 Mon Sep 17 00:00:00 2001 From: sawinglogz <3787776-sawinglogz@users.noreply.gitlab.com> Date: Fri, 17 Jan 2020 16:41:02 -0500 Subject: [PATCH] Work around qmake limitations in Info.plist generation. --- Building/MacOS/finalize_plist | 6 ++++++ 1 file changed, 6 insertions(+) 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