diff options
Diffstat (limited to 'recipes-qt/qt5/qt5-creator/linguisttool.patch')
-rw-r--r-- | recipes-qt/qt5/qt5-creator/linguisttool.patch | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/recipes-qt/qt5/qt5-creator/linguisttool.patch b/recipes-qt/qt5/qt5-creator/linguisttool.patch new file mode 100644 index 00000000..6f92d6ab --- /dev/null +++ b/recipes-qt/qt5/qt5-creator/linguisttool.patch | |||
@@ -0,0 +1,23 @@ | |||
1 | Remove path prefix so it can find these tools from buildhost or native packages | ||
2 | |||
3 | Upstream-Status: Pending | ||
4 | Signed-off-by: Khem Raj <raj.khem@gmail.com> | ||
5 | Index: qt-creator-opensource-src-4.5.1/share/qtcreator/translations/translations.pro | ||
6 | =================================================================== | ||
7 | --- qt-creator-opensource-src-4.5.1.orig/share/qtcreator/translations/translations.pro | ||
8 | +++ qt-creator-opensource-src-4.5.1/share/qtcreator/translations/translations.pro | ||
9 | @@ -12,10 +12,10 @@ defineReplace(prependAll) { | ||
10 | return($$result) | ||
11 | } | ||
12 | |||
13 | -XMLPATTERNS = $$shell_path($$[QT_INSTALL_BINS]/xmlpatterns) | ||
14 | -LUPDATE = $$shell_path($$[QT_INSTALL_BINS]/lupdate) -locations relative -no-ui-lines -no-sort | ||
15 | -LRELEASE = $$shell_path($$[QT_INSTALL_BINS]/lrelease) | ||
16 | -LCONVERT = $$shell_path($$[QT_INSTALL_BINS]/lconvert) | ||
17 | +XMLPATTERNS = $$OE_QMAKE_PATH_EXTERNAL_HOST_BINS/xmlpatterns | ||
18 | +LUPDATE = $$OE_QMAKE_PATH_EXTERNAL_HOST_BINS/lupdate -locations relative -no-ui-lines -no-sort | ||
19 | +LRELEASE = $$OE_QMAKE_PATH_EXTERNAL_HOST_BINS/lrelease | ||
20 | +LCONVERT = $$OE_QMAKE_PATH_EXTERNAL_HOST_BINS/lconvert | ||
21 | |||
22 | wd = $$replace(IDE_SOURCE_TREE, /, $$QMAKE_DIR_SEP) | ||
23 | |||