summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2008-11-14 10:00:22 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2008-11-14 10:00:22 +0000
commite626836d44547058a9fde4ea45700ffbd790a485 (patch)
treed90bfbfbb8c4982bccb6d854954bcd44e3c1d263
parent844e4862072eff9898d13067a04e7259bd0b98d1 (diff)
remove NLS support by default for osx bundles
git-svn-id: svn://localhost/ardour2/branches/2.0-ongoing@4168 d708f5d6-7413-0410-9779-e7cbd77b26cf
-rwxr-xr-xtools/osx_packaging/osx_build10
1 files changed, 5 insertions, 5 deletions
diff --git a/tools/osx_packaging/osx_build b/tools/osx_packaging/osx_build
index 5d19be72b7..757de9eb05 100755
--- a/tools/osx_packaging/osx_build
+++ b/tools/osx_packaging/osx_build
@@ -9,7 +9,7 @@ WITH_JACK=1
WITH_LADSPA=1
STRIP=1
PRINT_SYSDEPS=
-WITH_NLS=1
+WITH_NLS=0
while [ $# -gt 0 ] ; do
echo "arg = $1"
@@ -19,9 +19,9 @@ while [ $# -gt 0 ] ; do
# top level build targets
#
- --sae) WITH_NLS=1 ; SAE=1 ; WITH_JACK=1; WITH_LADSPA=1; STRIP= ; shift ;;
- --public) WITH_NLS=1 ; SAE= ; WITH_JACK=; WITH_LADSPA=1; STRIP= ; shift ;;
- --allinone) SAE= ; WITH_NLS=1 ; WITH_JACK=1; WITH_LADSPA=1; STRIP= ; shift ;;
+ --sae) WITH_NLS=0 ; SAE=1 ; WITH_JACK=1; WITH_LADSPA=1; STRIP= ; shift ;;
+ --public) WITH_NLS=0 ; SAE= ; WITH_JACK=; WITH_LADSPA=1; STRIP= ; shift ;;
+ --allinone) SAE= ; WITH_NLS=0 ; WITH_JACK=1; WITH_LADSPA=1; STRIP= ; shift ;;
--test) SAE= ; WITH_JACK=; WITH_LADSPA=; STRIP= ; shift ;;
#
@@ -32,7 +32,7 @@ while [ $# -gt 0 ] ; do
--noladspa) WITH_LADSPA= ; shift ;;
--nostrip) STRIP= ; shift ;;
--sysdeps) PRINT_SYSDEPS=1; shift ;;
- --nonls) WITH_NLS=0 ; shift ;;
+ --nls) WITH_NLS=1 ; shift ;;
esac
done