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"
This commit is contained in:
Robin Gareus 2016-02-16 00:05:26 +01:00
parent de94f3ce83
commit 92d8e6622d

View file

@ -32,7 +32,7 @@ while [ $# -gt 0 ] ; do
# top level build targets
#
--sae) WITH_NLS= ;
--sae)
SAE=1 ;
WITH_LADSPA=1;
STRIP= ;
@ -49,14 +49,13 @@ while [ $# -gt 0 ] ; do
PRODUCT_PKG_DIR=Mixbus;
APPNAME=Mixbus ;
shift ;;
--public) WITH_NLS= ;
--public)
SAE= ;
WITH_LADSPA=1;
PRODUCT_PKG_DIR=Ardour;
APPNAME=Ardour ;
shift ;;
--allinone) SAE= ;
WITH_NLS= ;
WITH_LADSPA=1;
STRIP= ;
PRODUCT_PKG_DIR=Ardour ;