diff options
author | Dale Whinham <daleyo@gmail.com> | 2016-07-21 21:33:54 +0100 |
---|---|---|
committer | Dale Whinham <daleyo@gmail.com> | 2016-07-21 21:33:54 +0100 |
commit | 78b97ee36433121b12d67d465f043cd7d75ec7ee (patch) | |
tree | c4b27194c5010cfedc8a83e42efaf538d3eaaf3d /src | |
parent | 624cd9cd983e294cea77a337e8aed916f28ababe (diff) |
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.
Diffstat (limited to 'src')
-rw-r--r-- | src/citra_qt/Info.plist | 2 |
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 @@ <key>CFBundleDevelopmentRegion</key> <string>English</string> <key>CFBundleExecutable</key> - <string>$(EXECUTABLE_NAME)</string> + <string>${EXECUTABLE_NAME}</string> <key>CFBundleGetInfoString</key> <string></string> <key>CFBundleIconFile</key> |