~ubuntu-branches/ubuntu/precise/kde4libs/precise

« back to all changes in this revision

Viewing changes to plasma/data/kconfig_updates/plasma_popupapplet_fix_groups.pl

  • Committer: Package Import Robot
  • Author(s): Philip Muškovac, Philip Muškovac, Felix Geyer
  • Date: 2011-12-23 20:22:04 UTC
  • mfrom: (1.14.12)
  • Revision ID: package-import@ubuntu.com-20111223202204-pa369jt38tng7j3k
Tags: 4:4.7.95-0ubuntu1
[ Philip Muškovac ]
* New upstream release candidate
  - update kdelibs5-data.install

[ Felix Geyer ]
* Update symbols files.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#!/usr/bin/perl
2
 
 
3
 
while(<>) {
4
 
  if ($_ =~ m/^\[.*\[Configuration\]\[PopupApplet\]$/) {
5
 
    print "# DELETEGROUP $_";
6
 
    $_ =~ s/\[Configuration\]\[PopupApplet\]$/[PopupApplet]/;
7
 
  }
8
 
  print $_;
9
 
}