Files
poky/meta/recipes-sato/webkit/files/Makefile
Koen Kooi b36f998fc7 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>
2011-07-12 15:00:46 +01:00

735 B

MODULES = Source/JavaScriptCore Source/JavaScriptGlue Source/ThirdParty/ANGLE Source/WebCore Source/WebKit Source/WebKit2 Tools

all: @for dir in $(MODULES); do ${MAKE} $@ -C dir; exit_status=?;
if [ $$exit_status -ne 0 ]; then exit $$exit_status; fi; done

debug d development dev develop: @for dir in $(MODULES); do ${MAKE} $@ -C dir; exit_status=?;
if [ $$exit_status -ne 0 ]; then exit $$exit_status; fi; done

release r deployment dep deploy: @for dir in $(MODULES); do ${MAKE} $@ -C dir; exit_status=?;
if [ $$exit_status -ne 0 ]; then exit $$exit_status; fi; done

clean: @for dir in $(MODULES); do ${MAKE} $@ -C dir; exit_status=?;
if [ $$exit_status -ne 0 ]; then exit $$exit_status; fi; done