diff -r 6cbe568179ef ports/kde/kdelibs4/Portfile
a
|
b
|
|
45 | 45 | default-kde4-xdg-menu-prefix.patch \ |
46 | 46 | fix-bundle-icons.patch \ |
47 | 47 | workaround-kdeinit4-crash.patch \ |
48 | | patch-cmake-modules-FindKDE4-Internal.cmake.diff |
| 48 | patch-cmake-modules-FindKDE4-Internal.cmake.diff \ |
| 49 | patch-dont-create-empty-config-dirs.diff |
49 | 50 | |
50 | 51 | patch.dir ${workpath}/${distname} |
51 | 52 | patch.pre_args -p1 |
diff -r 6cbe568179ef ports/kde/kdelibs4/files/patch-dont-create-empty-config-dirs.diff
-
|
+
|
|
| 1 | --- kdelibs/kdecore/config/kconfig.cpp 2010/10/21 23:07:41 1188301 |
| 2 | +++ kdelibs/kdecore/config/kconfig.cpp 2010/10/21 23:10:49 1188302 |
| 3 | @@ -59,7 +59,7 @@ |
| 4 | bFileImmutable(false), bForceGlobal(false), bSuppressGlobal(false), |
| 5 | componentData(componentData_), configState(KConfigBase::NoAccess) |
| 6 | { |
| 7 | - sGlobalFileName = componentData.dirs()->saveLocation("config") + QLatin1String("kdeglobals"); |
| 8 | + sGlobalFileName = componentData.dirs()->saveLocation("config", QString(), false) + QLatin1String("kdeglobals"); |
| 9 | |
| 10 | static int use_etc_kderc = -1; |
| 11 | if (use_etc_kderc < 0) |