summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'dev-db/edb/files/autogen.sh')
-rw-r--r--dev-db/edb/files/autogen.sh39
1 files changed, 0 insertions, 39 deletions
diff --git a/dev-db/edb/files/autogen.sh b/dev-db/edb/files/autogen.sh
deleted file mode 100644
index 4c1a662b02da..000000000000
--- a/dev-db/edb/files/autogen.sh
+++ /dev/null
@@ -1,39 +0,0 @@
-#! /bin/sh
-
-srcdir=`dirname $0`
-test -z "$srcdir" && srcdir=.
-
-THEDIR="`pwd`"
-cd "$srcdir"
-DIE=0
-
-abort () {
- echo "$1 not found or command failed. Aborting!"
- exit 1
-}
-
-set -x
-aclocal || abort "aclocal"
-libtoolize --ltdl --force --copy || abort "libtoolize"
-autoheader || abort "autoheader"
-automake --foreign --add-missing || abort "automake"
-autoconf || abort "autoconf"
-
-if test -z "$*"; then
- echo "I am going to run ./configure with no arguments - if you wish "
- echo "to pass any to it, please specify them on the $0 command line."
-fi
-
-cd "$THEDIR"
-
-$srcdir/configure "$@" || abort "configure"
-
-set +x
-
-echo "Now type:"
-echo
-echo "make"
-echo "make install"
-echo
-echo "have fun."
-