OpenSDE Packages Database (without history before r20070)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

50 lines
2.0 KiB

  1. # --- SDE-COPYRIGHT-NOTE-BEGIN ---
  2. # This copyright note is auto-generated by ./scripts/Create-CopyPatch.
  3. #
  4. # Filename: package/.../qt4/qt4-webkit2-set-OUTPUT_DIR-value-if-empty.patch
  5. # Copyright (C) 2013 The OpenSDE Project
  6. #
  7. # More information can be found in the files COPYING and README.
  8. #
  9. # This patch file is dual-licensed. It is available under the license the
  10. # patched project is licensed under, as long as it is an OpenSource license
  11. # as defined at http://www.opensource.org/ (e.g. BSD, X11) or under the terms
  12. # of the GNU General Public License as published by the Free Software
  13. # Foundation; either version 2 of the License, or (at your option) any later
  14. # version.
  15. # --- SDE-COPYRIGHT-NOTE-END ---
  16. From b6805e883c078f7647d9234aca4e3513ebd1c9bf Mon Sep 17 00:00:00 2001
  17. From: Martin Jansa <Martin.Jansa@gmail.com>
  18. Date: Tue, 1 May 2012 07:48:15 +0200
  19. Subject: [PATCH 03/21] webkit2: set OUTPUT_DIR value if empty
  20. Without this do_configure was trying to create /include/WebCore/libdummy.prl in root of build host filesystem
  21. now it's in proper place ${WORKDIR}/qt-everywhere-opensource-src-4.8.1/src/3rdparty/webkit/include/WebCore/libdummy.prl
  22. First reported here:
  23. http://www.mail-archive.com/openembedded-devel@lists.openembedded.org/msg24436.html
  24. Upstream-Status: Pending
  25. Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
  26. ---
  27. src/3rdparty/webkit/Source/WebKit2/DerivedSources.pro | 2 ++
  28. 1 file changed, 2 insertions(+)
  29. diff --git a/src/3rdparty/webkit/Source/WebKit2/DerivedSources.pro b/src/3rdparty/webkit/Source/WebKit2/DerivedSources.pro
  30. index 006a88c..5e17193 100644
  31. --- a/src/3rdparty/webkit/Source/WebKit2/DerivedSources.pro
  32. +++ b/src/3rdparty/webkit/Source/WebKit2/DerivedSources.pro
  33. @@ -3,6 +3,8 @@ TARGET = dummy
  34. CONFIG -= debug_and_release
  35. +isEmpty(OUTPUT_DIR): OUTPUT_DIR = ../..
  36. +
  37. CONFIG(standalone_package) {
  38. isEmpty(WEBKIT2_GENERATED_SOURCES_DIR):WEBKIT2_GENERATED_SOURCES_DIR = $$PWD/generated
  39. isEmpty(WC_GENERATED_SOURCES_DIR):WC_GENERATED_SOURCES_DIR = $$PWD/../WebCore/generated
  40. --
  41. 1.8.0