diff options
author | Bartosz Kosiorek <gang65@poczta.onet.pl> | 2018-11-27 11:40:49 +0100 |
---|---|---|
committer | Bartosz Kosiorek <gang65@poczta.onet.pl> | 2018-11-29 14:08:26 +0100 |
commit | 9c0d40fbc7d01ff46b78b798361bf3a19cc18bdc (patch) | |
tree | a2afd07ced2da313c5cdc6183bb1ea7e832d9a7e /solenv/bin | |
parent | a55d15e27f4290b9aaf5597161b2b3c5200d3f85 (diff) |
Rename Mac OS X to official name macOS in comments and documentation
Change-Id: I651b7f202fa52ff5f5357a11aa72c43eb7dc7f95
Reviewed-on: https://gerrit.libreoffice.org/64102
Tested-by: Jenkins
Reviewed-by: Bartosz Kosiorek <gang65@poczta.onet.pl>
Diffstat (limited to 'solenv/bin')
-rwxr-xr-x | solenv/bin/macosx-codesign-app-bundle | 2 | ||||
-rw-r--r-- | solenv/bin/modules/installer/simplepackage.pm | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/solenv/bin/macosx-codesign-app-bundle b/solenv/bin/macosx-codesign-app-bundle index f5ccff1475f1..85d74514585c 100755 --- a/solenv/bin/macosx-codesign-app-bundle +++ b/solenv/bin/macosx-codesign-app-bundle @@ -11,7 +11,7 @@ set -o pipefail # from installer::simplepackage::create_package() in solenv/bin/modules/installer/simplepackage.pm # and the test-install target in Makefile.in. -test `uname` = Darwin || { echo This is for OS X only; exit 1; } +test `uname` = Darwin || { echo This is for macOS only; exit 1; } test $# = 1 || { echo Usage: $0 app-bundle; exit 1; } diff --git a/solenv/bin/modules/installer/simplepackage.pm b/solenv/bin/modules/installer/simplepackage.pm index f5337e59dc18..46f9f477d1b1 100644 --- a/solenv/bin/modules/installer/simplepackage.pm +++ b/solenv/bin/modules/installer/simplepackage.pm @@ -223,7 +223,7 @@ sub replace_variables_in_scriptfile # Creating the "simple" package. # "zip" for Windows # "tar.gz" for all other platforms -# additionally "dmg" on Mac OS X +# additionally "dmg" on macOS ############################################# sub create_package @@ -405,7 +405,7 @@ sub create_package { my $subdir = "$tempdir/$packagename/$volume_name_classic_app.app/Contents/Resources"; if ( ! -d $subdir ) { installer::systemactions::create_directory($subdir); } - # iterate over OS X localizations + # iterate over macOS localizations foreach $lang ("ca", "cs", "da", "de", "el", "en", "es", "fi", "fr", "hr", "hu", "id", "it", "ja", "ko", "ms", "nl", "no", "pl", "pt", "pt_PT", "ro", "ru", "sk", "sv", "th", "tr", "uk", "vi", "zh_CN", "zh_TW") { installer::systemactions::create_directory($subdir . "/" . $lang . ".lproj"); |