X-Git-Url: https://git.stderr.nl/gitweb?p=rodin%2Fchimara.git;a=blobdiff_plain;f=autogen.sh;h=6556cd8f3ddf8fa8566f68c8e5555746d0be96a3;hp=49281e569d05009f9605e0b9a78cbf4364c5d39a;hb=HEAD;hpb=062bbb9e7322c8e3f5162f86fc2f93bfc587b830 diff --git a/autogen.sh b/autogen.sh index 49281e5..6556cd8 100755 --- a/autogen.sh +++ b/autogen.sh @@ -1,21 +1,22 @@ #!/bin/sh ### autogen.sh with sensible comments ############################### +### CREATE MACRO DIRECTORY ########################################## +# Needed by Gtk-doc +mkdir -p m4 + ### GTK-DOC ######################################################### # Run before autotools echo "Setting up Gtk-Doc" -gtkdocize --flavour no-tmpl || exit 1 +gtkdocize --copy --flavour no-tmpl || exit 1 ### AUTOTOOLS ####################################################### # Runs autoconf, autoheader, aclocal, automake, autopoint, libtoolize echo "Regenerating autotools files" -autoreconf --install --symlink || exit 1 - -### GLIB-GETTEXT #################################################### -echo "Running glib-gettextize... Ignore non-fatal messages" -glib-gettextize --force --copy || exit 1 +autoreconf --force --install || exit 1 ### INTLTOOL ######################################################## -# Run after autopoint or glib-gettextize +# Run after autopoint echo "Setting up Intltool" intltoolize --copy --force --automake || exit 1 +