diff options
Diffstat (limited to 'recipes-qt/qt5/qtdeclarative-git/0001-qmltestexample-fix-link.patch')
-rw-r--r-- | recipes-qt/qt5/qtdeclarative-git/0001-qmltestexample-fix-link.patch | 46 |
1 files changed, 0 insertions, 46 deletions
diff --git a/recipes-qt/qt5/qtdeclarative-git/0001-qmltestexample-fix-link.patch b/recipes-qt/qt5/qtdeclarative-git/0001-qmltestexample-fix-link.patch deleted file mode 100644 index 7a68dd53..00000000 --- a/recipes-qt/qt5/qtdeclarative-git/0001-qmltestexample-fix-link.patch +++ /dev/null | |||
@@ -1,46 +0,0 @@ | |||
1 | From ea698b0a2588585356d1ea5139ca6feb7110611a Mon Sep 17 00:00:00 2001 | ||
2 | From: =?UTF-8?q?Eric=20B=C3=A9nard?= <eric@eukrea.com> | ||
3 | Date: Sun, 26 May 2013 14:26:19 +0200 | ||
4 | Subject: [PATCH 1/3] qmltestexample: fix link | ||
5 | MIME-Version: 1.0 | ||
6 | Content-Type: text/plain; charset=UTF-8 | ||
7 | Content-Transfer-Encoding: 8bit | ||
8 | |||
9 | else we get : | ||
10 | ld: warning: libQt5Quick.so.5, needed by libQt5QuickTest.so, not found | ||
11 | |||
12 | Upstream-Status: Inappropriate | ||
13 | |||
14 | Signed-off-by: Eric Bénard <eric@eukrea.com> | ||
15 | --- | ||
16 | examples/qmltest/qmltest/qmltest.pro | 2 +- | ||
17 | tools/qmltestrunner/qmltestrunner.pro | 2 +- | ||
18 | 2 files changed, 2 insertions(+), 2 deletions(-) | ||
19 | |||
20 | diff --git a/examples/qmltest/qmltest/qmltest.pro b/examples/qmltest/qmltest/qmltest.pro | ||
21 | index b5893c5..1b00e6c 100644 | ||
22 | --- a/examples/qmltest/qmltest/qmltest.pro | ||
23 | +++ b/examples/qmltest/qmltest/qmltest.pro | ||
24 | @@ -14,7 +14,7 @@ TESTDATA += tst_basic.qml tst_item.qml | ||
25 | # This code exists solely for the purpose of building this example | ||
26 | # inside the examples/ hierarchy. | ||
27 | |||
28 | -QT += qml qmltest | ||
29 | +QT += qml qmltest quick | ||
30 | |||
31 | macx: CONFIG -= app_bundle | ||
32 | |||
33 | diff --git a/tools/qmltestrunner/qmltestrunner.pro b/tools/qmltestrunner/qmltestrunner.pro | ||
34 | index 5184c1f..668cf17 100644 | ||
35 | --- a/tools/qmltestrunner/qmltestrunner.pro | ||
36 | +++ b/tools/qmltestrunner/qmltestrunner.pro | ||
37 | @@ -1,5 +1,5 @@ | ||
38 | SOURCES += main.cpp | ||
39 | |||
40 | -QT += qml qmltest | ||
41 | +QT += qml qmltest quick | ||
42 | |||
43 | load(qt_tool) | ||
44 | -- | ||
45 | 1.8.3.2 | ||
46 | |||