plasma-framework/kconfig_updates/plasma_popupapplet_fix_groups.pl
Aaron J. Seigo dcc747d592 move to a subdir
svn path=/trunk/KDE/kdelibs/; revision=1019528
2009-09-03 20:03:59 +00:00

10 lines
196 B
Perl
Executable File

#!/usr/bin/perl
while(<>) {
if ($_ =~ m/^\[.*\[Configuration\]\[PopupApplet\]$/) {
print "# DELETEGROUP $_";
$_ =~ s/\[Configuration\]\[PopupApplet\]$/[PopupApplet]/;
}
print $_;
}