summarylogtreecommitdiffstats
path: root/qt5-workaround-pkgconfig-install-issue.patch
diff options
context:
space:
mode:
authorPhilip A Reimer2015-09-12 13:01:05 -0600
committerPhilip A Reimer2015-09-12 13:01:05 -0600
commitab6d11a580513ec4bd335151e680fb8e2f807e93 (patch)
tree04244649379f764418739127315b14a594d4c43d /qt5-workaround-pkgconfig-install-issue.patch
parente04961421583a194000a162822534faa2a66cb0c (diff)
downloadaur-ab6d11a580513ec4bd335151e680fb8e2f807e93.tar.gz
Update to 5.5.0
Diffstat (limited to 'qt5-workaround-pkgconfig-install-issue.patch')
-rw-r--r--qt5-workaround-pkgconfig-install-issue.patch10
1 files changed, 5 insertions, 5 deletions
diff --git a/qt5-workaround-pkgconfig-install-issue.patch b/qt5-workaround-pkgconfig-install-issue.patch
index ef1037fa9aa6..46e561aac048 100644
--- a/qt5-workaround-pkgconfig-install-issue.patch
+++ b/qt5-workaround-pkgconfig-install-issue.patch
@@ -9,15 +9,15 @@
{
QString ret = project->first("QMAKE_PKGCONFIG_FILE").toQString();
if (ret.isEmpty()) {
-@@ -3130,7 +3130,11 @@
+@@ -3134,7 +3134,11 @@
if(fixify) {
if(QDir::isRelativePath(ret) && !project->isEmpty("DESTDIR"))
ret.prepend(project->first("DESTDIR").toQString());
-- ret = Option::fixPathToLocalOS(fileFixify(ret, qmake_getpwd(), Option::output_dir));
+- ret = fileFixify(ret, FileFixifyBackwards);
+ if (onlyPrependDestdir) {
+ ret = Option::fixPathToLocalOS(ret);
+ } else {
-+ ret = Option::fixPathToLocalOS(fileFixify(ret, qmake_getpwd(), Option::output_dir));
++ ret = fileFixify(ret, FileFixifyBackwards);
+ }
}
return ret;
@@ -35,7 +35,7 @@
--- qmake/generators/win32/winmakefile.cpp.orig 2013-03-26 19:05:13.398183953 +0100
+++ qmake/generators/win32/winmakefile.cpp 2013-03-26 19:15:02.800490466 +0100
-@@ -851,7 +851,7 @@
+@@ -822,7 +822,7 @@
}
if(!ret.isEmpty())
ret += "\n\t";
@@ -43,4 +43,4 @@
+ ret += installMetaFile(ProKey("QMAKE_PKGCONFIG_INSTALL_REPLACE"), pkgConfigFileName(true, true), dst_pc);
if(!uninst.isEmpty())
uninst.append("\n\t");
- uninst.append("-$(DEL_FILE) \"" + dst_pc + "\"");
+ uninst.append("-$(DEL_FILE) " + escapeFilePath(dst_pc));