summaryrefslogtreecommitdiffstats
path: root/autogen.sh
diff options
context:
space:
mode:
authorChristophe Fergeau <teuf@gnome.org>2005-11-04 07:57:34 +0000
committerChristophe Fergeau <teuf@gnome.org>2005-11-04 07:57:34 +0000
commitb670cad4b069fdfa8aee836c4afefaabf22d6d33 (patch)
tree57716e195be82c5092ddc822f3f634927f1bee5c /autogen.sh
parent4d061c1b6191e7d4071240b36822c75a8550bf0f (diff)
downloadlibgpod-tmz-b670cad4b069fdfa8aee836c4afefaabf22d6d33.tar.gz
libgpod-tmz-b670cad4b069fdfa8aee836c4afefaabf22d6d33.tar.xz
libgpod-tmz-b670cad4b069fdfa8aee836c4afefaabf22d6d33.zip
2005-11-04 Christophe Fergeau <teuf@gnome.org>
* autogen.sh: add missing call to glib-gettextize, this has the nice side-effect of adding mkinstalldirs if automake didn't copy it for us. git-svn-id: https://gtkpod.svn.sf.net/svnroot/gtkpod/libgpod/trunk@1137 f01d2545-417e-4e96-918e-98f8d0dbbcb6
Diffstat (limited to 'autogen.sh')
-rwxr-xr-xautogen.sh11
1 files changed, 3 insertions, 8 deletions
diff --git a/autogen.sh b/autogen.sh
index 4672034..5e235cb 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -24,6 +24,9 @@ find . -type f \( -name missing -o -name install-sh -o -name mkinstalldirs \
echo Running autoreconf...
autoreconf --force --install
+echo Running glib-gettextize
+glib-gettextize --force --copy
+
echo "Running intltoolize"
intltoolize --copy --force --automake
@@ -40,12 +43,4 @@ else
echo Skipping configure process.
fi
-if [ ! -f $srcdir/mkinstalldirs ]; then
- echo '******* WARNING *******'
- echo ./mkinstalldirs does not exist. If \'make install\' or \'make dist\' fails
- echo because of this, copy it from somewhere else AND RUN ./autogen.sh AGAIN.
- echo The automake and/or gettext package on your system should contain a copy.
- echo You can determine its location with \'locate gettext/mkinstalldirs\' or
- echo \'locate mkinstalldirs \|grep automake\'.
-fi
exit 0