Seems over-complicated to use SDK-specific subdirectories. v2.15.117
authorCarl Hetherington <cth@carlh.net>
Tue, 5 Jan 2021 17:09:25 +0000 (18:09 +0100)
committerCarl Hetherington <cth@carlh.net>
Tue, 5 Jan 2021 17:09:25 +0000 (18:09 +0100)
cscript
platform/osx/make_dmg.sh

diff --git a/cscript b/cscript
index ada4bf7ae7e369e116c17d3efebcf21885bd5423..cafbd25cc1ccc8d93cc8d01d55fa0c2528661af5 100644 (file)
--- a/cscript
+++ b/cscript
@@ -689,7 +689,7 @@ def package(target, version, options):
             elif target.distro == 'centos' or target.distro == 'fedora' or target.distro == 'mageia':
                 return package_rpm(target, cpu, version, options)
     elif target.platform == 'osx':
             elif target.distro == 'centos' or target.distro == 'fedora' or target.distro == 'mageia':
                 return package_rpm(target, cpu, version, options)
     elif target.platform == 'osx':
-        target.command('bash platform/osx/make_dmg.sh %s %s %s %s %s %s' % (target.environment_prefix, target.directory, target.intel_sdk, target.arm_sdk, target.apple_id, target.apple_password))
+        target.command('bash platform/osx/make_dmg.sh %s %s %s %s' % (target.environment_prefix, target.directory, target.apple_id, target.apple_password))
         packages = []
         for x in glob.glob('build/platform/osx/DCP-o-matic*.dmg'):
             a = os.path.abspath(x)
         packages = []
         for x in glob.glob('build/platform/osx/DCP-o-matic*.dmg'):
             a = os.path.abspath(x)
index be918f0c962083eb77da52b7af4b1b3892386df6..9ba05ac96485846a00ecb7e303f6264a12f7edf3 100644 (file)
@@ -1,8 +1,8 @@
 #!/bin/bash
 #
 #!/bin/bash
 #
-SYNTAX="make_dmg.sh <environment> <builddir> <intel-sdk> <arm-sdk> <apple-id> <apple-password>"
+SYNTAX="make_dmg.sh <environment> <builddir> <apple-id> <apple-password>"
 #
 #
-# e.g. make_dmg.sh /Users/carl/osx-environment /Users/carl/cdist 10.9 11.0 foo@bar.net opensesame
+# e.g. make_dmg.sh /Users/carl/osx-environment /Users/carl/cdist foo@bar.net opensesame
 
 # Don't set -e here as egrep (used a few times) returns 1 if no matches
 # were found.
 
 # Don't set -e here as egrep (used a few times) returns 1 if no matches
 # were found.
@@ -13,10 +13,8 @@ version=`git describe --tags --abbrev=0 | sed -e "s/v//"`
 DMG_SIZE=256
 ENV=$1
 ROOT=$2
 DMG_SIZE=256
 ENV=$1
 ROOT=$2
-INTEL_SDK=$3
-ARM_SDK=$4
-APPLE_ID=$5
-APPLE_PASSWORD=$6
+APPLE_ID=$3
+APPLE_PASSWORD=$4
 
 # This is our work area for making up the .dmgs
 mkdir -p build/platform/osx
 
 # This is our work area for making up the .dmgs
 mkdir -p build/platform/osx
@@ -61,7 +59,7 @@ function copy_lib_root {
 }
 
 function copy_lib_env {
 }
 
 function copy_lib_env {
-       for f in $ENV/arm64/$ARM_SDK/lib/$1*.dylib; do
+       for f in $ENV/arm64/lib/$1*.dylib; do
                if [ -h $f ]; then
                        ln -s $(readlink $f) "$2/`basename $f`"
                else
                if [ -h $f ]; then
                        ln -s $(readlink $f) "$2/`basename $f`"
                else
@@ -212,7 +210,7 @@ function copy_resources {
     # i18n: wxWidgets .mo files
     for lang in de es fr it sv nl ru pl da cs; do
        mkdir "$dest/$lang"
     # i18n: wxWidgets .mo files
     for lang in de es fr it sv nl ru pl da cs; do
        mkdir "$dest/$lang"
-       cp $ENV/x86_64/$INTEL_SDK/share/locale/$lang/LC_MESSAGES/wxstd.mo "$dest/$lang"
+       cp $ENV/x86_64/share/locale/$lang/LC_MESSAGES/wxstd.mo "$dest/$lang"
     done
 }
 
     done
 }