- 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:
parent
ad193a9571
commit
3a5e37f238
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue