summaryrefslogtreecommitdiff
path: root/autogen.sh
diff options
context:
space:
mode:
Diffstat (limited to 'autogen.sh')
-rwxr-xr-xautogen.sh37
1 files changed, 0 insertions, 37 deletions
diff --git a/autogen.sh b/autogen.sh
deleted file mode 100755
index 94b54ab..0000000
--- a/autogen.sh
+++ /dev/null
@@ -1,37 +0,0 @@
-#!/bin/sh -e
-
-set -e
-
-oldpwd=$(pwd)
-topdir=$(dirname $0)
-cd $topdir
-
-# Some boiler plate to get git setup as expected
-if test -d .git; then
- if test -f .git/hooks/pre-commit.sample && \
- test ! -f .git/hooks/pre-commit; then
- cp -pv .git/hooks/pre-commit.sample .git/hooks/pre-commit
- fi
-fi
-
-set -x
-
-gettextize=$(which gettextize || true)
-if test -z "$gettextize"; then
- echo "Couldn't find gettextize" >&2
- exit 1
-fi
-
-# Copied from avahi's autogen.sh to work around gettext braindamage
-rm -f Makefile.am~ configure.ac~
-# Evil, evil, evil, evil hack
-sed 's/read dummy/\#/' $gettextize | sh -s -- --copy --force --no-changelog
-test -f Makefile.am~ && mv Makefile.am~ Makefile.am
-test -f configure.ac~ && mv configure.ac~ configure.ac
-
-autoreconf --force --install --verbose
-if test x"$NOCONFIGURE" = x; then
- cd $oldpwd
- exec $topdir/configure "$@"
-fi
-