mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-07 15:25:01 +01:00
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:
parent
de94f3ce83
commit
92d8e6622d
1 changed files with 28 additions and 29 deletions
|
|
@ -32,35 +32,34 @@ while [ $# -gt 0 ] ; do
|
||||||
# top level build targets
|
# top level build targets
|
||||||
#
|
#
|
||||||
|
|
||||||
--sae) WITH_NLS= ;
|
--sae)
|
||||||
SAE=1 ;
|
SAE=1 ;
|
||||||
WITH_LADSPA=1;
|
WITH_LADSPA=1;
|
||||||
STRIP= ;
|
STRIP= ;
|
||||||
PRODUCT_PKG_DIR=ArdourSAE ;
|
PRODUCT_PKG_DIR=ArdourSAE ;
|
||||||
APPNAME=Ardour ;
|
APPNAME=Ardour ;
|
||||||
shift ;;
|
shift ;;
|
||||||
--mixbus) MIXBUS=1;
|
--mixbus) MIXBUS=1;
|
||||||
WITH_HARRISON_LV2=1 ;
|
WITH_HARRISON_LV2=1 ;
|
||||||
WITH_X42_LV2=1 ;
|
WITH_X42_LV2=1 ;
|
||||||
WITH_NLS=1 ;
|
WITH_NLS=1 ;
|
||||||
SAE= ;
|
SAE= ;
|
||||||
WITH_LADSPA=;
|
WITH_LADSPA=;
|
||||||
STRIP= ;
|
STRIP= ;
|
||||||
PRODUCT_PKG_DIR=Mixbus;
|
PRODUCT_PKG_DIR=Mixbus;
|
||||||
APPNAME=Mixbus ;
|
APPNAME=Mixbus ;
|
||||||
shift ;;
|
shift ;;
|
||||||
--public) WITH_NLS= ;
|
--public)
|
||||||
SAE= ;
|
SAE= ;
|
||||||
WITH_LADSPA=1;
|
WITH_LADSPA=1;
|
||||||
PRODUCT_PKG_DIR=Ardour;
|
PRODUCT_PKG_DIR=Ardour;
|
||||||
APPNAME=Ardour ;
|
APPNAME=Ardour ;
|
||||||
shift ;;
|
shift ;;
|
||||||
--allinone) SAE= ;
|
--allinone) SAE= ;
|
||||||
WITH_NLS= ;
|
WITH_LADSPA=1;
|
||||||
WITH_LADSPA=1;
|
STRIP= ;
|
||||||
STRIP= ;
|
PRODUCT_PKG_DIR=Ardour ;
|
||||||
PRODUCT_PKG_DIR=Ardour ;
|
shift ;;
|
||||||
shift ;;
|
|
||||||
--test) SAE= ; WITH_LADSPA=; STRIP= ; shift ;;
|
--test) SAE= ; WITH_LADSPA=; STRIP= ; shift ;;
|
||||||
|
|
||||||
#
|
#
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue