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

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