Hi, latest git seems to throw an intltool error during compile:
checking for intltool >= 0.23... awk: cmd. line:1: fatal: cannot open file `config/intltool-update.in' for reading (No such file or directory) awk: cmd. line:1: fatal: cannot open file `config/intltool-update.in' for reading (No such file or directory) found ./configure: line 3727: test: : integer expression expected configure: error: Your intltool is too old. You need intltool 0.23 or later. I solved the problem modifying autogen.sh, but i'm not sure this is the right thing to do; Here's the patch. -- Kasa
diff --git a/autogen.sh b/autogen.sh index cf5842c..9f8a656 100755 --- a/autogen.sh +++ b/autogen.sh @@ -7,8 +7,12 @@ ORIGDIR=`pwd` cd $srcdir autoreconf -v --install || exit 1 +if grep "^AC_PROG_INTLTOOL" configure.ac >/dev/null; then + echo "Running intltoolize..." + intltoolize --copy --force --automake +fi glib-gettextize --copy --force || exit 1 cd $ORIGDIR || exit $?
_______________________________________________ compiz mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/compiz
