mirror of
https://git.yoctoproject.org/poky
synced 2026-05-09 17:39:31 +00:00
b36f998fc7
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>
19 lines
722 B
Makefile
19 lines
722 B
Makefile
SCRIPTS_PATH ?= ../Tools/Scripts
|
|
XCODE_OPTIONS = `perl -I$(SCRIPTS_PATH) -Mwebkitdirs -e 'print XcodeOptionString()'` $(ARGS)
|
|
|
|
all:
|
|
( xcodebuild $(OTHER_OPTIONS) $(XCODE_OPTIONS) | grep -v setenv && exit $${PIPESTATUS[0]} )
|
|
|
|
debug d development dev develop: force
|
|
$(SCRIPTS_PATH)/set-webkit-configuration --debug
|
|
( xcodebuild $(OTHER_OPTIONS) $(XCODE_OPTIONS) | grep -v setenv && exit $${PIPESTATUS[0]} )
|
|
|
|
release r deployment dep deploy: force
|
|
$(SCRIPTS_PATH)/set-webkit-configuration --release
|
|
( xcodebuild $(OTHER_OPTIONS) $(XCODE_OPTIONS) | grep -v setenv && exit $${PIPESTATUS[0]} )
|
|
|
|
clean:
|
|
( xcodebuild $(OTHER_OPTIONS) -alltargets clean $(XCODE_OPTIONS) | grep -v setenv && exit $${PIPESTATUS[0]} )
|
|
|
|
force: ;
|