Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1 | From b6805e883c078f7647d9234aca4e3513ebd1c9bf Mon Sep 17 00:00:00 2001 |
| 2 | From: Martin Jansa <Martin.Jansa@gmail.com> |
| 3 | Date: Tue, 1 May 2012 07:48:15 +0200 |
| 4 | Subject: [PATCH 03/21] webkit2: set OUTPUT_DIR value if empty |
| 5 | |
| 6 | Without this do_configure was trying to create /include/WebCore/libdummy.prl in root of build host filesystem |
| 7 | now it's in proper place ${WORKDIR}/qt-everywhere-opensource-src-4.8.1/src/3rdparty/webkit/include/WebCore/libdummy.prl |
| 8 | |
| 9 | First reported here: |
| 10 | http://www.mail-archive.com/openembedded-devel@lists.openembedded.org/msg24436.html |
| 11 | |
| 12 | Upstream-Status: Pending |
| 13 | |
| 14 | Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> |
| 15 | --- |
| 16 | src/3rdparty/webkit/Source/WebKit2/DerivedSources.pro | 2 ++ |
| 17 | 1 file changed, 2 insertions(+) |
| 18 | |
| 19 | diff --git a/src/3rdparty/webkit/Source/WebKit2/DerivedSources.pro b/src/3rdparty/webkit/Source/WebKit2/DerivedSources.pro |
| 20 | index 006a88c..5e17193 100644 |
| 21 | --- a/src/3rdparty/webkit/Source/WebKit2/DerivedSources.pro |
| 22 | +++ b/src/3rdparty/webkit/Source/WebKit2/DerivedSources.pro |
| 23 | @@ -3,6 +3,8 @@ TARGET = dummy |
| 24 | |
| 25 | CONFIG -= debug_and_release |
| 26 | |
| 27 | +isEmpty(OUTPUT_DIR): OUTPUT_DIR = ../.. |
| 28 | + |
| 29 | CONFIG(standalone_package) { |
| 30 | isEmpty(WEBKIT2_GENERATED_SOURCES_DIR):WEBKIT2_GENERATED_SOURCES_DIR = $$PWD/generated |
| 31 | isEmpty(WC_GENERATED_SOURCES_DIR):WC_GENERATED_SOURCES_DIR = $$PWD/../WebCore/generated |
| 32 | -- |
| 33 | 1.8.0 |
| 34 | |