diff options
author | rsesek@chromium.org <rsesek@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-07-20 03:03:27 +0000 |
---|---|---|
committer | rsesek@chromium.org <rsesek@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-07-20 03:03:27 +0000 |
commit | 9879dc366a698384a3c2baa79aab87b1a3ea6d02 (patch) | |
tree | e49de3669ca5347fe00daafd6f38ac704dd76505 /ash | |
parent | b1f1f71f4593b4e92dae9e10c889eeee4c82a26f (diff) | |
download | chromium_src-9879dc366a698384a3c2baa79aab87b1a3ea6d02.zip chromium_src-9879dc366a698384a3c2baa79aab87b1a3ea6d02.tar.gz chromium_src-9879dc366a698384a3c2baa79aab87b1a3ea6d02.tar.bz2 |
[Mac] In all the plists, define the LSMinimumSystemVersion based on MACOSX_DEPLOYMENT_TARGET.
The LSMinimumSystemVersion must be of the form |n.n.n| [1] but the
MACOSX_DEPLOYMENT_TARGET is only |n.n|, so add an extra |.0| to the value in
the plist key.
[1] https://developer.apple.com/library/mac/#documentation/CoreFoundation/Conceptual/CFBundles/BundleTypes/BundleTypes.html
BUG=137676
TEST=none
TBR=mac people
Review URL: https://chromiumcodereview.appspot.com/10810031
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@147607 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ash')
-rw-r--r-- | ash/shell/cocoa/app-Info.plist | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ash/shell/cocoa/app-Info.plist b/ash/shell/cocoa/app-Info.plist index 8c70f98..9f04fc7 100644 --- a/ash/shell/cocoa/app-Info.plist +++ b/ash/shell/cocoa/app-Info.plist @@ -23,7 +23,7 @@ <key>CFBundleVersion</key> <string>1</string> <key>LSMinimumSystemVersion</key> - <string>${MACOSX_DEPLOYMENT_TARGET}</string> + <string>${MACOSX_DEPLOYMENT_TARGET}.0</string> <key>NSHumanReadableCopyright</key> <string>Copyright © 2012 Google Inc. All rights reserved.</string> <key>NSMainNibFile</key> |