kwin/data/kwin3_plugin.pl
Oswald Buddenhagen f9be59fdc3 make scripts executable
of course, make install handles that, but having it in the repo as well
is nicer

svn path=/trunk/KDE/kdebase/workspace/; revision=971905
2009-05-23 16:14:27 +00:00

8 lines
140 B
Perl
Executable file

#!/usr/bin/perl
foreach (<>) {
if(/^PluginLib=kwin_(.*)$/) {
print "PluginLib=kwin3_$1\n";
next;
}
print $_;
}