summaryrefslogtreecommitdiffstats
path: root/meta/recipes-sato/webkit/files/update-webkit.sh
diff options
context:
space:
mode:
authorKoen Kooi <koen@dominion.thruhere.net>2011-07-11 12:24:02 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2011-07-12 15:00:46 +0100
commitb36f998fc7b185e67d094fe59239f7a77167a9c4 (patch)
tree874b9d8fc1547d86871792d1a42b1fcac02d4467 /meta/recipes-sato/webkit/files/update-webkit.sh
parent01552639c901223843b19410cb440c2da7726997 (diff)
downloadpoky-b36f998fc7b185e67d094fe59239f7a77167a9c4.tar.gz
webkit-gtk: update SRCREV
The layout of the repository has changed, so we need to account for that: * fixed license checksums * fixed SRC_URI * fixed SRCREV_FORMAT PCRE is gone, so no need for the dftables hack anymore But most importantly, this fixes the crash issues when using javascript (e.g. github.com) Tested on: * usrp-e1xx/angstrom-2011.07 (From OE-Core rev: 7df4f5f3d64f1f60814cea60d83270be7bfa4f2c) Signed-off-by: Koen Kooi <koen@dominion.thruhere.net> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-sato/webkit/files/update-webkit.sh')
-rwxr-xr-xmeta/recipes-sato/webkit/files/update-webkit.sh8
1 files changed, 8 insertions, 0 deletions
diff --git a/meta/recipes-sato/webkit/files/update-webkit.sh b/meta/recipes-sato/webkit/files/update-webkit.sh
new file mode 100755
index 0000000000..723c45a4fb
--- /dev/null
+++ b/meta/recipes-sato/webkit/files/update-webkit.sh
@@ -0,0 +1,8 @@
1#!/bin/sh
2# usage: sh update-webkit.sh <revision>
3
4export rev=$1
5
6for i in autogen.sh configure.ac GNUmakefile.am Makefile Makefile.shared ; do
7 wget "http://trac.webkit.org/browser/trunk/$i?rev=$rev&format=raw" -O $i
8done