summaryrefslogtreecommitdiff
path: root/tools/osx_packaging
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2016-02-16 00:05:26 +0100
committerRobin Gareus <robin@gareus.org>2016-02-16 00:52:50 +0100
commit92d8e6622d30e1f1debdbf5aa403702d22705bb6 (patch)
treecb885cb64af85846e7b9cbfb16b832e53287a23e /tools/osx_packaging
parentde94f3ce839337a852682f2b2c82b437ee044fb5 (diff)
OSX build - ignore order of options (and fix indent on the way)
We call the script with "--nls --public" and not "--public --nls" --public did unset "WITH_NLS"
Diffstat (limited to 'tools/osx_packaging')
-rwxr-xr-xtools/osx_packaging/osx_build57
1 files changed, 28 insertions, 29 deletions
diff --git a/tools/osx_packaging/osx_build b/tools/osx_packaging/osx_build
index 5e4a1a6a63..f7226bc332 100755
--- a/tools/osx_packaging/osx_build
+++ b/tools/osx_packaging/osx_build
@@ -32,35 +32,34 @@ while [ $# -gt 0 ] ; do
# top level build targets
#
- --sae) WITH_NLS= ;
- SAE=1 ;
- WITH_LADSPA=1;
- STRIP= ;
- PRODUCT_PKG_DIR=ArdourSAE ;
- APPNAME=Ardour ;
- shift ;;
- --mixbus) MIXBUS=1;
- WITH_HARRISON_LV2=1 ;
- WITH_X42_LV2=1 ;
- WITH_NLS=1 ;
- SAE= ;
- WITH_LADSPA=;
- STRIP= ;
- PRODUCT_PKG_DIR=Mixbus;
- APPNAME=Mixbus ;
- shift ;;
- --public) WITH_NLS= ;
- SAE= ;
- WITH_LADSPA=1;
- PRODUCT_PKG_DIR=Ardour;
- APPNAME=Ardour ;
- shift ;;
- --allinone) SAE= ;
- WITH_NLS= ;
- WITH_LADSPA=1;
- STRIP= ;
- PRODUCT_PKG_DIR=Ardour ;
- shift ;;
+ --sae)
+ SAE=1 ;
+ WITH_LADSPA=1;
+ STRIP= ;
+ PRODUCT_PKG_DIR=ArdourSAE ;
+ APPNAME=Ardour ;
+ shift ;;
+ --mixbus) MIXBUS=1;
+ WITH_HARRISON_LV2=1 ;
+ WITH_X42_LV2=1 ;
+ WITH_NLS=1 ;
+ SAE= ;
+ WITH_LADSPA=;
+ STRIP= ;
+ PRODUCT_PKG_DIR=Mixbus;
+ APPNAME=Mixbus ;
+ shift ;;
+ --public)
+ SAE= ;
+ WITH_LADSPA=1;
+ PRODUCT_PKG_DIR=Ardour;
+ APPNAME=Ardour ;
+ shift ;;
+ --allinone) SAE= ;
+ WITH_LADSPA=1;
+ STRIP= ;
+ PRODUCT_PKG_DIR=Ardour ;
+ shift ;;
--test) SAE= ; WITH_LADSPA=; STRIP= ; shift ;;
#