summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2020-05-01 12:22:29 -0600
committerPaul Davis <paul@linuxaudiosystems.com>2020-05-01 12:22:29 -0600
commit25f873917f6f262305ca20404db48ea6868660a2 (patch)
tree610bc7b2697af1f88d2de34fbae0504f0c4a3a1f /tools
parente424fdc1971043712d4bee3c68af73f9b3e74935 (diff)
make with-NLS be the default for Mac builds
It already was for mixbus, but not for ardour
Diffstat (limited to 'tools')
-rwxr-xr-xtools/osx_packaging/osx_build5
1 files changed, 2 insertions, 3 deletions
diff --git a/tools/osx_packaging/osx_build b/tools/osx_packaging/osx_build
index c4138bf4e1..0e31727120 100755
--- a/tools/osx_packaging/osx_build
+++ b/tools/osx_packaging/osx_build
@@ -22,7 +22,7 @@ WITH_HARRISON_LV2=
WITH_X42_LV2=
STRIP=1
PRINT_SYSDEPS=
-WITH_NLS=
+WITH_NLS=1
: ${HARRISONCHANNELSTRIP=harrison_channelstrip}
: ${HARRISONLV2=harrison_lv2s-n}
@@ -49,7 +49,6 @@ while [ $# -gt 0 ] ; do
--mixbus) MIXBUS=1;
WITH_HARRISON_LV2=1 ;
WITH_X42_LV2=1 ;
- WITH_NLS=1 ;
SAE= ;
STRIP= ;
PRODUCT_PKG_DIR=Mixbus;
@@ -61,7 +60,6 @@ while [ $# -gt 0 ] ; do
MIXBUS32C=1;
WITH_HARRISON_LV2=1 ;
WITH_X42_LV2=1 ;
- WITH_NLS=1 ;
SAE= ;
STRIP= ;
PRODUCT_PKG_DIR=Mixbus32C;
@@ -91,6 +89,7 @@ while [ $# -gt 0 ] ; do
--noharvid) WITH_HARVID= ; shift ;;
--nostrip) STRIP= ; shift ;;
--sysdeps) PRINT_SYSDEPS=1; shift ;;
+ --no-nls) WITH_NLS= ; shift ;;
--nls) WITH_NLS=1 ; shift ;;
--chanstrip) HARRISONCHANNELSTRIP=$2 ; shift; shift ;;
esac