614336c2c6
svn path=/trunk/kdebase/kwin/; revision=141858
8 lines
142 B
Perl
Executable file
8 lines
142 B
Perl
Executable file
#!/usr/bin/perl
|
|
foreach (<>) {
|
|
if(/^PluginLib=libkwin(.*)$/) {
|
|
print "PluginLib=kwin_$1\n";
|
|
next;
|
|
}
|
|
print $_;
|
|
}
|