]> Pileus Git - ~andy/gtk/blobdiff - autogen.sh
Not running gettextize fails on a fresh CVS checkout and we'll get a lot
[~andy/gtk] / autogen.sh
index 003e043aba86c8fc56263c385849aa4c53d7884c..05c98ba85e12f68d92667932f1eb274704b817c2 100755 (executable)
@@ -1,6 +1,11 @@
 #!/bin/sh
 # Run this to generate all the initial makefiles, etc.
 
+srcdir=`dirname $0`
+test -z "$srcdir" && srcdir=.
+
+ORIGDIR=`pwd`
+cd $srcdir
 PROJECT=Gtk+
 TEST_TYPE=-d
 FILE=gdk
@@ -46,18 +51,25 @@ if test -z "$*"; then
 fi
 
 case $CC in
-xlc | *lcc | *lcc\ *) am_opt=--include-deps;;
+*xlc | *xlc\ * | *lcc | *lcc\ *) am_opt=--include-deps;;
 esac
 
 aclocal $ACLOCAL_FLAGS
 
+echo "Running gettextize...  Ignore non-fatal messages."
+# Hmm, we specify --force here, since otherwise things dont'
+# get added reliably, but we don't want to overwrite intl
+# while making dist.
+echo "no" | gettextize --copy --force
+
 # optionally feature autoheader
 (autoheader --version)  < /dev/null > /dev/null 2>&1 && autoheader
 
 automake $am_opt
 autoconf
+cd $ORIGDIR
 
-./configure "$@"
+$srcdir/configure "$@"
 
 echo 
 echo "Now type 'make' to compile $PROJECT."