f9be59fdc3
of course, make install handles that, but having it in the repo as well is nicer svn path=/trunk/KDE/kdebase/workspace/; revision=971905
8 lines
140 B
Perl
Executable file
8 lines
140 B
Perl
Executable file
#!/usr/bin/perl
|
|
foreach (<>) {
|
|
if(/^PluginLib=kwin_(.*)$/) {
|
|
print "PluginLib=kwin3_$1\n";
|
|
next;
|
|
}
|
|
print $_;
|
|
}
|