[Xfce4-commits] <gigolo:master> Fix wrong check (oops)

Enrico Tröger noreply at xfce.org
Mon Nov 9 20:22:03 CET 2009


Updating branch refs/heads/master
         to 63640a683e95a02dc9e5ec9da2e365c3e754f2a7 (commit)
       from 4efef6c2109e0e078c0ebc42dc191c8921c5b679 (commit)

commit 63640a683e95a02dc9e5ec9da2e365c3e754f2a7
Author: Enrico Tröger <enrico at xfce.org>
Date:   Mon Nov 9 20:19:55 2009 +0100

    Fix wrong check (oops)

 configure.ac |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/configure.ac b/configure.ac
index ab3d06e..9459570 100644
--- a/configure.ac
+++ b/configure.ac
@@ -41,7 +41,7 @@ GETTEXT_PACKAGE=gigolo
 AC_SUBST(GETTEXT_PACKAGE)
 AC_DEFINE_UNQUOTED(GETTEXT_PACKAGE, "$GETTEXT_PACKAGE", [Gettext package.])
 
-if [ ! "$conf_dir" ]; then
+if test -z "$conf_dir" ; then
 	conf_dir="."
 fi
 ALL_LINGUAS=`cd "$conf_dir/po" 2>/dev/null && ls *.po 2>/dev/null | $AWK 'BEGIN { FS="."; ORS=" " } { print $1 }'`



More information about the Xfce4-commits mailing list