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 | |
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
-rw-r--r-- | ash/shell/cocoa/app-Info.plist | 2 | ||||
-rw-r--r-- | chrome/app/app-Info.plist | 2 | ||||
-rw-r--r-- | chrome/app/app_mode-Info.plist | 2 | ||||
-rw-r--r-- | chrome/app/helper-Info.plist | 2 | ||||
-rw-r--r-- | content/shell/mac/app-Info.plist | 2 | ||||
-rw-r--r-- | content/shell/mac/helper-Info.plist | 2 | ||||
-rw-r--r-- | remoting/host/installer/mac/uninstaller/remoting_uninstaller-Info.plist | 2 | ||||
-rw-r--r-- | remoting/host/remoting_me2me_host-Info.plist | 4 |
8 files changed, 9 insertions, 9 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> diff --git a/chrome/app/app-Info.plist b/chrome/app/app-Info.plist index b1e122f..8344232 100644 --- a/chrome/app/app-Info.plist +++ b/chrome/app/app-Info.plist @@ -236,7 +236,7 @@ <key>LSHasLocalizedDisplayName</key> <string>1</string> <key>LSMinimumSystemVersion</key> - <string>10.5.0</string> + <string>${MACOSX_DEPLOYMENT_TARGET}.0</string> <key>NSPrincipalClass</key> <string>BrowserCrApplication</string> <key>NSSupportsAutomaticGraphicsSwitching</key> diff --git a/chrome/app/app_mode-Info.plist b/chrome/app/app_mode-Info.plist index f89e0bc..9ac4fb4 100644 --- a/chrome/app/app_mode-Info.plist +++ b/chrome/app/app_mode-Info.plist @@ -29,7 +29,7 @@ <key>LSFileQuarantineEnabled</key> <true/> <key>LSMinimumSystemVersion</key> - <string>10.5.0</string> + <string>${MACOSX_DEPLOYMENT_TARGET}.0</string> <key>NSAppleScriptEnabled</key> <true/> </dict> diff --git a/chrome/app/helper-Info.plist b/chrome/app/helper-Info.plist index fdf3853..ff2c3df 100644 --- a/chrome/app/helper-Info.plist +++ b/chrome/app/helper-Info.plist @@ -21,7 +21,7 @@ <key>LSFileQuarantineEnabled</key> <true/> <key>LSMinimumSystemVersion</key> - <string>10.5.0</string> + <string>${MACOSX_DEPLOYMENT_TARGET}.0</string> <key>LSUIElement</key> <string>1</string> <key>NSSupportsAutomaticGraphicsSwitching</key> diff --git a/content/shell/mac/app-Info.plist b/content/shell/mac/app-Info.plist index c8a5310..84e98b2 100644 --- a/content/shell/mac/app-Info.plist +++ b/content/shell/mac/app-Info.plist @@ -25,7 +25,7 @@ <key>NSPrincipalClass</key> <string>NSApplication</string> <key>LSMinimumSystemVersion</key> - <string>10.5.0</string> + <string>${MACOSX_DEPLOYMENT_TARGET}.0</string> <key>LSFileQuarantineEnabled</key> <true/> <key>NSSupportsAutomaticGraphicsSwitching</key> diff --git a/content/shell/mac/helper-Info.plist b/content/shell/mac/helper-Info.plist index 2208e70..646d48f 100644 --- a/content/shell/mac/helper-Info.plist +++ b/content/shell/mac/helper-Info.plist @@ -21,7 +21,7 @@ <key>LSFileQuarantineEnabled</key> <true/> <key>LSMinimumSystemVersion</key> - <string>10.5.0</string> + <string>${MACOSX_DEPLOYMENT_TARGET}.0</string> <key>LSUIElement</key> <string>1</string> <key>NSSupportsAutomaticGraphicsSwitching</key> diff --git a/remoting/host/installer/mac/uninstaller/remoting_uninstaller-Info.plist b/remoting/host/installer/mac/uninstaller/remoting_uninstaller-Info.plist index f435845..0b90c2f 100644 --- a/remoting/host/installer/mac/uninstaller/remoting_uninstaller-Info.plist +++ b/remoting/host/installer/mac/uninstaller/remoting_uninstaller-Info.plist @@ -23,7 +23,7 @@ <key>CFBundleVersion</key> <string>VERSION_FULL</string> <key>LSMinimumSystemVersion</key> - <string>${MACOSX_DEPLOYMENT_TARGET}</string> + <string>${MACOSX_DEPLOYMENT_TARGET}.0</string> <key>NSHumanReadableCopyright</key> <string>Copyright © 2012 COPYRIGHT_BY All rights reserved.</string> <key>NSMainNibFile</key> diff --git a/remoting/host/remoting_me2me_host-Info.plist b/remoting/host/remoting_me2me_host-Info.plist index c8af611..6bbd3c2 100644 --- a/remoting/host/remoting_me2me_host-Info.plist +++ b/remoting/host/remoting_me2me_host-Info.plist @@ -23,10 +23,10 @@ <key>CFBundleShortVersionString</key> <string>VERSION_SHORT</string> <key>LSMinimumSystemVersion</key> - <string>${MACOSX_DEPLOYMENT_TARGET}</string> + <string>${MACOSX_DEPLOYMENT_TARGET}.0</string> <key>NSHumanReadableCopyright</key> <string>Copyright © 2012 COPYRIGHT_BY All rights reserved.</string> <key>LSUIElement</key> <string>1</string> </dict> -</plist>
\ No newline at end of file +</plist> |