- Don't fail if intltoolize is not present as it will still be possible to build the windows, cli and gtk UIs.

- Also check for gintltoolize, might fix some MacOSX builds.
This commit is contained in:
evilynux 2007-07-17 06:05:40 +00:00
parent ad193a9571
commit 3a5e37f238
1 changed files with 9 additions and 2 deletions

View File

@ -4,7 +4,14 @@
# what's wrong, i'm commenting the call to intltoolize and adding the
# corresponding files to CVS.
echo "Running intltoolize"
intltoolize --copy --force --automake
if test ! "x$(which intltoolize)" = "x"; then
echo "Running intltoolize"
intltoolize --copy --force --automake
else
if test ! "x$(which gintltoolize)" = "x"; then
echo "Running gintltoolize"
gintltoolize --copy --force --automake
fi
fi
autoreconf --install --force --verbose