summaryrefslogtreecommitdiffstats
path: root/meta/recipes-sato/webkit/files/autogen.sh
diff options
context:
space:
mode:
authorRoss Burton <ross.burton@intel.com>2012-07-13 15:20:39 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-07-17 10:54:06 +0100
commit7765ad4d69bfb6c15fb436e509574629e896f2e6 (patch)
tree2c0d8faef77d56cf28bbce2b90a5619e5e5a3fd6 /meta/recipes-sato/webkit/files/autogen.sh
parentc9f855e0400dd8050a459bf34f685159218f7e53 (diff)
downloadpoky-7765ad4d69bfb6c15fb436e509574629e896f2e6.tar.gz
webkit-gtk: remove svn recipe
(From OE-Core rev: ecb18e2b6a8fc16b323f93c62ed5ff5b080c5dd0) Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
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 $?