summaryrefslogtreecommitdiffstats
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 @@
1#! /bin/sh
2
3# Allow invocation from a separate build directory; in that case, we change
4# to the source directory to run the auto*, then change back before running configure
5srcdir=`dirname $0`
6test -z "$srcdir" && srcdir=.
7
8ORIGDIR=`pwd`
9cd $srcdir
10
11rm -f $top_srcdir/autom4te.cache
12
13touch README INSTALL
14
15if test -z `which autoreconf`; then
16 echo "Error: autoreconf not found, please install it."
17 exit 1
18fi
19autoreconf --verbose --install -I Source/autotools $ACLOCAL_FLAGS|| exit $?
20
21cd $ORIGDIR || exit 1
22
23$srcdir/configure $AUTOGEN_CONFIGURE_ARGS "$@" || exit $?