aboutsummaryrefslogtreecommitdiff
path: root/autogen.sh
diff options
context:
space:
mode:
Diffstat (limited to 'autogen.sh')
-rwxr-xr-xautogen.sh30
1 files changed, 0 insertions, 30 deletions
diff --git a/autogen.sh b/autogen.sh
deleted file mode 100755
index cba209c8..00000000
--- a/autogen.sh
+++ /dev/null
@@ -1,30 +0,0 @@
-#!/bin/sh -e
-
-cd $(dirname $0)
-autoreconf -i -f -v
-
-# Autoreconf overwrites INSTALL, but we have our own version of it.
-cp INSTALL.real INSTALL
-
-# Libtool 2.2 still reorders LDFLAGS badly, and they won't fix it before libtool 2.3 or 2.4
-# but we can leave without this
-if cat ltmain.sh.as-needed.patch | patch -t -p0 --dry-run
-then
- cat ltmain.sh.as-needed.patch | patch -t -p0
-fi
-
-run_configure=true
-for arg in $*; do
- case $arg in
- --no-configure)
- run_configure=false
- ;;
- *)
- ;;
- esac
-done
-
-if test $run_configure = true; then
- ./configure "$@"
-fi
-