aboutsummaryrefslogtreecommitdiffstats
path: root/meta/recipes-sato/webkit/files/autogen.sh
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-sato/webkit/files/autogen.sh')
-rwxr-xr-xmeta/recipes-sato/webkit/files/autogen.sh23
1 files changed, 0 insertions, 23 deletions
diff --git a/meta/recipes-sato/webkit/files/autogen.sh b/meta/recipes-sato/webkit/files/autogen.sh
deleted file mode 100755
index bb7779d44d..0000000000
--- a/meta/recipes-sato/webkit/files/autogen.sh
+++ /dev/null
@@ -1,23 +0,0 @@
-#! /bin/sh
-
-# Allow invocation from a separate build directory; in that case, we change
-# to the source directory to run the auto*, then change back before running configure
-srcdir=`dirname $0`
-test -z "$srcdir" && srcdir=.
-
-ORIGDIR=`pwd`
-cd $srcdir
-
-rm -f $top_srcdir/autom4te.cache
-
-touch README INSTALL
-
-if test -z `which autoreconf`; then
- echo "Error: autoreconf not found, please install it."
- exit 1
-fi
-autoreconf --verbose --install -I Source/autotools $ACLOCAL_FLAGS|| exit $?
-
-cd $ORIGDIR || exit 1
-
-$srcdir/configure $AUTOGEN_CONFIGURE_ARGS "$@" || exit $?