summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorchristian mueller <christian.ei.mueller@bmw.de>2012-03-23 12:48:05 +0100
committerchristian mueller <christian.ei.mueller@bmw.de>2012-03-23 12:48:05 +0100
commit59f069dad95be5850e580deff1f575f1ea425245 (patch)
treed2db8af9312669e8dbcafc67723356ae788be59f
parent3c4baa71a0c3176dad0c2dcdafbf802fd28a7200 (diff)
downloadaudiomanager-59f069dad95be5850e580deff1f575f1ea425245.tar.gz
* remove unessasary script1.1
Signed-off-by: christian mueller <christian.ei.mueller@bmw.de>
-rwxr-xr-xinclude/control/uncomment.pl24
1 files changed, 0 insertions, 24 deletions
diff --git a/include/control/uncomment.pl b/include/control/uncomment.pl
deleted file mode 100755
index f06f52c..0000000
--- a/include/control/uncomment.pl
+++ /dev/null
@@ -1,24 +0,0 @@
-use strict;
-use warnings;
-
-foreach (@ARGV)
-{
-
- open FILE, $_ or die "Couldn't open file: $!";
- my $string = join("", <FILE>);
- close FILE;
-
- $string=~ s|/[*].*?[*]/||sg;
- $string=~ s/virtual//sg;
- $string=~ s/=0;/;/sg;
- $string=~ s/(^|\n)[\n\s]*/$1/g;
-
- open F, ">$_" or die "Couldn't open file: $!";
- print F $string;
- close F;
-}
-
-
-
-
-