2007-01-08 20:59:57 +00:00
|
|
|
#!/bin/sh
|
2007-07-26 17:25:42 +00:00
|
|
|
# intltoolize is optionnal as it's only required for the gtk-glade UI.
|
2007-07-16 05:38:22 +00:00
|
|
|
|
2007-07-17 06:05:40 +00:00
|
|
|
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
|
2007-07-15 21:46:22 +00:00
|
|
|
|
2007-06-29 09:18:52 +00:00
|
|
|
autoreconf --install --force --verbose
|