summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorjkeil <jkeil@b3059339-0415-0410-9bf9-f77b7e298cf2>2003-02-13 19:13:50 +0000
committerjkeil <jkeil@b3059339-0415-0410-9bf9-f77b7e298cf2>2003-02-13 19:13:50 +0000
commit4c6a9664f43ebebaff5cb905c9eb9b33654fe45d (patch)
treebd96a0976fc14dd401ddd08d0c1bc1ce72ab9904 /configure
parentfdbb1881f58564a35aa39a8e51c2113bc88d82f6 (diff)
downloadmpv-4c6a9664f43ebebaff5cb905c9eb9b33654fe45d.tar.bz2
mpv-4c6a9664f43ebebaff5cb905c9eb9b33654fe45d.tar.xz
Must quote shell variable in test expression, otherwise configure bombs out
on solaris git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@9416 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure b/configure
index dcdc642aec..81925ce107 100755
--- a/configure
+++ b/configure
@@ -1579,7 +1579,7 @@ if test "$_i18n" = yes ; then
else
_def_i18n='#undef USE_I18N'
fi
-if test -z $_i18n_libs ; then
+if test -z "$_i18n_libs" ; then
echores "$_i18n"
else
echores "$_i18n (using $_i18n_libs)"