]> git.meshlink.io Git - catta/blobdiff - autogen.sh
let core-browse example look for the type used by core-publish example
[catta] / autogen.sh
index 2c68a6c3ec59bb712e669efcae03e39104b58010..6aebf96d372ad2a111e018b3a5bc69e47618e9c5 100755 (executable)
@@ -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