diff options
Diffstat (limited to 'recipes-qt/qt5/qt5-creator/0001-Use-correct-path-prefix.patch')
-rw-r--r-- | recipes-qt/qt5/qt5-creator/0001-Use-correct-path-prefix.patch | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/recipes-qt/qt5/qt5-creator/0001-Use-correct-path-prefix.patch b/recipes-qt/qt5/qt5-creator/0001-Use-correct-path-prefix.patch new file mode 100644 index 00000000..c064a9a9 --- /dev/null +++ b/recipes-qt/qt5/qt5-creator/0001-Use-correct-path-prefix.patch | |||
@@ -0,0 +1,32 @@ | |||
1 | From 50443809cc261a3f466cdebd3fa2dd4dda6e6a28 Mon Sep 17 00:00:00 2001 | ||
2 | From: Khem Raj <raj.khem@gmail.com> | ||
3 | Date: Tue, 25 Sep 2018 23:15:08 +0000 | ||
4 | Subject: [PATCH] Use correct path prefix | ||
5 | |||
6 | Upstream-Status: Pending | ||
7 | |||
8 | Signed-off-by: Khem Raj <raj.khem@gmail.com> | ||
9 | Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> | ||
10 | --- | ||
11 | share/qtcreator/translations/translations.pro | 8 ++++---- | ||
12 | 1 file changed, 4 insertions(+), 4 deletions(-) | ||
13 | |||
14 | diff --git a/share/qtcreator/translations/translations.pro b/share/qtcreator/translations/translations.pro | ||
15 | index 0df9762fcc..de09bc47ed 100644 | ||
16 | --- a/share/qtcreator/translations/translations.pro | ||
17 | +++ b/share/qtcreator/translations/translations.pro | ||
18 | @@ -12,10 +12,10 @@ defineReplace(prependAll) { | ||
19 | return($$result) | ||
20 | } | ||
21 | |||
22 | -XMLPATTERNS = $$shell_path($$[QT_INSTALL_BINS]/xmlpatterns) | ||
23 | -LUPDATE = $$shell_path($$[QT_INSTALL_BINS]/lupdate) -locations relative -no-ui-lines -no-sort | ||
24 | -LRELEASE = $$shell_path($$[QT_INSTALL_BINS]/lrelease) | ||
25 | -LCONVERT = $$shell_path($$[QT_INSTALL_BINS]/lconvert) | ||
26 | +XMLPATTERNS = $$OE_QMAKE_PATH_EXTERNAL_HOST_BINS/xmlpatterns | ||
27 | +LUPDATE = $$OE_QMAKE_PATH_EXTERNAL_HOST_BINS/lupdate -locations relative -no-ui-lines -no-sort | ||
28 | +LRELEASE = $$OE_QMAKE_PATH_EXTERNAL_HOST_BINS/lrelease | ||
29 | +LCONVERT = $$OE_QMAKE_PATH_EXTERNAL_HOST_BINS/lconvert | ||
30 | |||
31 | wd = $$replace(IDE_SOURCE_TREE, /, $$QMAKE_DIR_SEP) | ||
32 | |||