summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Dale Whinham2016-07-21 21:33:54 +0100
committerGravatar Dale Whinham2016-07-21 21:33:54 +0100
commit78b97ee36433121b12d67d465f043cd7d75ec7ee (patch)
treec4b27194c5010cfedc8a83e42efaf538d3eaaf3d
parentMerge pull request #1964 from Lectem/sdl2_dll_copy_fix (diff)
downloadyuzu-78b97ee36433121b12d67d465f043cd7d75ec7ee.tar.gz
yuzu-78b97ee36433121b12d67d465f043cd7d75ec7ee.tar.xz
yuzu-78b97ee36433121b12d67d465f043cd7d75ec7ee.zip
CMake: Fix Info.plist template for citra_qt/OSX
The Info.plist template incorrectly uses parentheses instead of curly braces, which means that building the .app bundle using regular 'make' results in the variable not being replaced, and hence the app bundle won't start because the executable name is incorrect. This commit fixes this issue.
-rw-r--r--src/citra_qt/Info.plist2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/citra_qt/Info.plist b/src/citra_qt/Info.plist
index 4c89e128b..7d46b39d1 100644
--- a/src/citra_qt/Info.plist
+++ b/src/citra_qt/Info.plist
@@ -5,7 +5,7 @@
5 <key>CFBundleDevelopmentRegion</key> 5 <key>CFBundleDevelopmentRegion</key>
6 <string>English</string> 6 <string>English</string>
7 <key>CFBundleExecutable</key> 7 <key>CFBundleExecutable</key>
8 <string>$(EXECUTABLE_NAME)</string> 8 <string>${EXECUTABLE_NAME}</string>
9 <key>CFBundleGetInfoString</key> 9 <key>CFBundleGetInfoString</key>
10 <string></string> 10 <string></string>
11 <key>CFBundleIconFile</key> 11 <key>CFBundleIconFile</key>