summaryrefslogtreecommitdiffstats
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
commite90721ea741f43dec96a2822d711049404fd1772 (patch)
tree57716e195be82c5092ddc822f3f634927f1bee5c
parente1ceb99289ab3877ae669b5e2aefd6b5daceefc8 (diff)
downloadlibgpod-e90721ea741f43dec96a2822d711049404fd1772.tar.gz
libgpod-e90721ea741f43dec96a2822d711049404fd1772.tar.xz
libgpod-e90721ea741f43dec96a2822d711049404fd1772.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
-rw-r--r--ChangeLog5
-rwxr-xr-xautogen.sh11
2 files changed, 8 insertions, 8 deletions
diff --git a/ChangeLog b/ChangeLog
index 9503146..777bbaf 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+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.
+
2005-11-02 Christophe Fergeau <teuf@gnome.org>
* configure.ac:
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