diff options
author | Joel Becker <jlbec@src.gnome.org> | 1998-12-16 01:40:50 +0000 |
---|---|---|
committer | Joel Becker <jlbec@src.gnome.org> | 1998-12-16 01:40:50 +0000 |
commit | 8968861d7948601413e077a43613573ff88f05ad (patch) | |
tree | 223c660c9c42ce42983d437219d4b90c973ad4e6 /autogen.sh | |
parent | 8a202e6f5b6303b612fe80b90934089e71b71908 (diff) | |
download | gdk-pixbuf-8968861d7948601413e077a43613573ff88f05ad.tar.gz |
Fixed gettextize/aclocal conflict in autogen.sh
Diffstat (limited to 'autogen.sh')
-rwxr-xr-x | autogen.sh | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/autogen.sh b/autogen.sh index 05c98ba85..2cb68864e 100755 --- a/autogen.sh +++ b/autogen.sh @@ -54,14 +54,17 @@ case $CC in *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 +# We don't need ./intl +rm -rf intl + +aclocal $ACLOCAL_FLAGS + # optionally feature autoheader (autoheader --version) < /dev/null > /dev/null 2>&1 && autoheader |