diff options
-rw-r--r-- | recipes-qt/qt5/qtsvg/0001-textobject.pro-use-DEPLOYMENT-only-for-wince-like-ot.patch | 30 | ||||
-rw-r--r-- | recipes-qt/qt5/qtsvg_git.bb | 2 |
2 files changed, 32 insertions, 0 deletions
diff --git a/recipes-qt/qt5/qtsvg/0001-textobject.pro-use-DEPLOYMENT-only-for-wince-like-ot.patch b/recipes-qt/qt5/qtsvg/0001-textobject.pro-use-DEPLOYMENT-only-for-wince-like-ot.patch new file mode 100644 index 00000000..4c9c643d --- /dev/null +++ b/recipes-qt/qt5/qtsvg/0001-textobject.pro-use-DEPLOYMENT-only-for-wince-like-ot.patch | |||
@@ -0,0 +1,30 @@ | |||
1 | From d539c7e4ef98fd4933573eac606a4edee6655d8c Mon Sep 17 00:00:00 2001 | ||
2 | From: Martin Jansa <Martin.Jansa@gmail.com> | ||
3 | Date: Thu, 5 Nov 2015 12:25:05 +0100 | ||
4 | Subject: [PATCH] textobject.pro: use DEPLOYMENT only for wince like other | ||
5 | examples | ||
6 | |||
7 | Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> | ||
8 | --- | ||
9 | examples/svg/richtext/textobject/textobject.pro | 8 +++++--- | ||
10 | 1 file changed, 5 insertions(+), 3 deletions(-) | ||
11 | |||
12 | diff --git a/examples/svg/richtext/textobject/textobject.pro b/examples/svg/richtext/textobject/textobject.pro | ||
13 | index 794ad32..0ecd2c7 100644 | ||
14 | --- a/examples/svg/richtext/textobject/textobject.pro | ||
15 | +++ b/examples/svg/richtext/textobject/textobject.pro | ||
16 | @@ -12,6 +12,8 @@ RESOURCES = resources.qrc | ||
17 | target.path = $$[QT_INSTALL_EXAMPLES]/svg/richtext/textobject | ||
18 | INSTALLS += target | ||
19 | |||
20 | -filesToDeploy.files = files/*.svg | ||
21 | -filesToDeploy.path = files | ||
22 | -DEPLOYMENT += filesToDeploy | ||
23 | +wince* { | ||
24 | + filesToDeploy.files = files/*.svg | ||
25 | + filesToDeploy.path = files | ||
26 | + DEPLOYMENT += filesToDeploy | ||
27 | +} | ||
28 | -- | ||
29 | 2.6.2 | ||
30 | |||
diff --git a/recipes-qt/qt5/qtsvg_git.bb b/recipes-qt/qt5/qtsvg_git.bb index b3bc50f6..57e9b4fa 100644 --- a/recipes-qt/qt5/qtsvg_git.bb +++ b/recipes-qt/qt5/qtsvg_git.bb | |||
@@ -14,3 +14,5 @@ LIC_FILES_CHKSUM = " \ | |||
14 | DEPENDS += "qtbase" | 14 | DEPENDS += "qtbase" |
15 | 15 | ||
16 | SRCREV = "9ee5ee12a7b92a57624dafed935b3ac1fad426d9" | 16 | SRCREV = "9ee5ee12a7b92a57624dafed935b3ac1fad426d9" |
17 | |||
18 | SRC_URI += "file://0001-textobject.pro-use-DEPLOYMENT-only-for-wince-like-ot.patch" | ||