Blame SOURCES/qtbase-everywhere-src-5.14.2-no_relocatable.patch

6b1016
diff -up qtbase-everywhere-src-5.14.2/src/corelib/global/qlibraryinfo.cpp.no_relocatable qtbase-everywhere-src-5.14.2/src/corelib/global/qlibraryinfo.cpp
6b1016
--- qtbase-everywhere-src-5.14.2/src/corelib/global/qlibraryinfo.cpp.no_relocatable	2020-03-27 04:49:31.000000000 -0500
6b1016
+++ qtbase-everywhere-src-5.14.2/src/corelib/global/qlibraryinfo.cpp	2020-04-13 15:13:44.075705226 -0500
6b1016
@@ -671,8 +671,11 @@ static QString getPrefix(
6b1016
 #  if QT_CONFIGURE_CROSSBUILD
6b1016
     if (group == QLibraryInfo::DevicePaths)
6b1016
         return QString::fromLocal8Bit(QT_CONFIGURE_PREFIX_PATH);
6b1016
-#  endif
6b1016
+#  elif 0 //QT_CONFIG(relocatable)
6b1016
     return getExtPrefixFromHostBinDir();
6b1016
+#  else
6b1016
+    return QString::fromLocal8Bit(QT_CONFIGURE_PREFIX_PATH);
6b1016
+#  endif
6b1016
 #elif QT_CONFIG(relocatable)
6b1016
     return getRelocatablePrefix();
6b1016
 #else