X-Git-Url: http://git.meshlink.io/?a=blobdiff_plain;f=autogen.sh;h=6aebf96d372ad2a111e018b3a5bc69e47618e9c5;hb=da70d824d064c975755a7f7992a03831d5c80555;hp=2c68a6c3ec59bb712e669efcae03e39104b58010;hpb=fbc9039f85aa2078fd66a7cec4fc266794ecf4ba;p=catta diff --git a/autogen.sh b/autogen.sh index 2c68a6c..6aebf96 100755 --- a/autogen.sh +++ b/autogen.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/bin/sh # This file is part of avahi. # @@ -42,36 +42,19 @@ run_versioned() { set -ex -if [ -f .git/hooks/pre-commit.sample -a ! -f .git/hooks/pre-commit ] ; then - cp -p .git/hooks/pre-commit.sample .git/hooks/pre-commit && \ - chmod +x .git/hooks/pre-commit && \ - echo "Activated pre-commit hook." -fi - if [ "x$1" = "xam" ] ; then + # re-run only automake (after changes to Makefile.am) run_versioned automake "$AM_VERSION" -a -c --foreign ./config.status else rm -rf autom4te.cache rm -f config.cache - rm -f Makefile.am~ configure.ac~ - # Evil, evil, evil, evil hack - sed 's/read dummy/\#/' `which gettextize` | sh -s -- --copy --force - test -f Makefile.am~ && mv Makefile.am~ Makefile.am - test -f configure.ac~ && mv configure.ac~ configure.ac - test "x$LIBTOOLIZE" = "x" && LIBTOOLIZE=libtoolize - - intltoolize --copy --force --automake "$LIBTOOLIZE" -c --force + run_versioned aclocal "$AM_VERSION" -I common run_versioned autoconf "$AC_VERSION" -Wall run_versioned autoheader "$AC_VERSION" run_versioned automake "$AM_VERSION" -a -c --foreign - - if test "x$NOCONFIGURE" = "x"; then - ./configure "$@" - make clean - fi fi