diff options
author | Jörg Frings-Fürst <debian@jff-webhosting.net> | 2017-12-01 10:32:14 +0100 |
---|---|---|
committer | Jörg Frings-Fürst <debian@jff-webhosting.net> | 2017-12-01 10:32:14 +0100 |
commit | 4097e27114d227692d53c5d28487e12a3833cd24 (patch) | |
tree | d5c2a62c4db97de94f92150340612c64d3997669 /makepackagebin.sh | |
parent | f8a0a4e1c775a90c313cb83201eec4cea4e9a7da (diff) | |
parent | 5514d94483c98e3320b202b1bb882023a7d12027 (diff) |
Merge branch 'feature/upstream' into develop
Diffstat (limited to 'makepackagebin.sh')
-rwxr-xr-x[-rw-r--r--] | makepackagebin.sh | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/makepackagebin.sh b/makepackagebin.sh index 0b88664..2688bf4 100644..100755 --- a/makepackagebin.sh +++ b/makepackagebin.sh @@ -25,6 +25,8 @@ VERSION=`grep ARGYLL_VERSION_STR h/aconfig.h | head -1 | sed 's/# define ARGYLL_ # # OS X i386 10.7 [bash] darwin11 x86_64-apple-darwin11 x86_64 # +# OS X i386 10.11 [bash] darwin16 x86_64-apple-darwin16 x86_64 +# # Linux RH 4.0 [bash] linux-gnu i686-redhat-linux-gnu i686 # # Linux Fedora 7.1 [bash] linux-gnu i386-redhat-linux-gnu i386 @@ -97,7 +99,12 @@ else if [ X$OSTYPE = "Xdarwin8.0" ] ; then USBBINFILES="binfiles.osx" USETAR=true else if [ X$OSTYPE = "Xdarwin10.0" \ - -o X$OSTYPE = "Xdarwin11" ] ; then + -o X$OSTYPE = "Xdarwin11" \ + -o X$OSTYPE = "Xdarwin12" \ + -o X$OSTYPE = "Xdarwin13" \ + -o X$OSTYPE = "Xdarwin14" \ + -o X$OSTYPE = "Xdarwin15" \ + -o X$OSTYPE = "Xdarwin16" ] ; then if [ X$HOSTTYPE = "Xx86_64" ] ; then echo "We're on OSX 10.6 x86_64!" PACKAGE=Argyll_V${VERSION}_osx10.6_x86_64_bin.tgz |