2013-09-26 17:14:40 +02:00

44 lines
1.9 KiB
Plaintext

$NetBSD: patch-ap,v 1.12 2005/12/11 10:53:54 markd Exp $
--- kinit/kstartupconfig.cpp.orig 2005-12-01 20:47:00.000000000 +1300
+++ kinit/kstartupconfig.cpp
@@ -28,10 +28,10 @@ This utility helps to have some configur
without the need to launch anything linked to KDE libraries (which may need
some time to load).
-The configuration options are written to $KDEHOME/share/config/startupconfigkeys,
+The configuration options are written to $KDEHOME/share/kde/config/startupconfigkeys,
one option per line, as <file> <group> <key> <default>. It is possible to
use ' for quoting multiword entries. Values of these options will be written
-to $KDEHOME/share/config/startupconfig as a shell script that will set
+to $KDEHOME/share/kde/config/startupconfig as a shell script that will set
the values to shell variables, named <file>_<group>_<key> (all spaces replaced
by underscores, everything lowercase). So e.g. line
"ksplashrc KSplash Theme Default" may result in "ksplashrc_ksplash_theme=Default".
@@ -89,14 +89,14 @@ int main()
return 1;
char filename[ 1024 ];
strlcpy( filename, kdehome, 1024 );
- strlcat( filename, "/share/config/startupconfig", 1024 );
+ strlcat( filename, "/share/kde/config/startupconfig", 1024 );
if( access( filename, R_OK ) != 0 )
{
int ret = system( "kdostartupconfig" );
return WEXITSTATUS( ret );
}
strlcpy( filename, kdehome, 1024 );
- strlcat( filename, "/share/config/startupconfigfiles", 1024 );
+ strlcat( filename, "/share/kde/config/startupconfigfiles", 1024 );
struct stat st;
if( stat( filename, &st ) != 0 )
{
@@ -111,7 +111,7 @@ int main()
return WEXITSTATUS( ret );
}
strlcpy( filename, kdehome, 1024 );
- strlcat( filename, "/share/config/startupconfigkeys", 1024 );
+ strlcat( filename, "/share/kde/config/startupconfigkeys", 1024 );
FILE* keys = fopen( filename, "r" );
if( keys == NULL )
{