diff options
author | Jörg Frings-Fürst <debian@jff-webhosting.net> | 2017-11-25 10:16:54 +0100 |
---|---|---|
committer | Jörg Frings-Fürst <debian@jff-webhosting.net> | 2017-11-25 10:16:54 +0100 |
commit | 1b1126bd023a2bb92699773a1867358067dabcb8 (patch) | |
tree | 6fd56d034e5a154c7992e7855d61691cecd043c4 /makepackagebin.sh | |
parent | cb5c7cec4aa1946f75dc3d408eb7f1051f3fb3d4 (diff) | |
parent | f6b8e0eae4374f339487a33e3e4fe5462d5816e1 (diff) |
Update upstream source from tag 'upstream/2.0.0'
Update to upstream version '2.0.0'
with Debian dir e866e6e75661017faaa5331becda76021407390b
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 |