summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorchristian mueller <christian.ei.mueller@bmw.de>2012-03-23 12:52:33 +0100
committerchristian mueller <christian.ei.mueller@bmw.de>2012-03-23 12:52:33 +0100
commita1f572cacb1c9b520a7f5271ce75c9ae2f4862c9 (patch)
treed2db8af9312669e8dbcafc67723356ae788be59f
parent3c4baa71a0c3176dad0c2dcdafbf802fd28a7200 (diff)
downloadaudiomanager-a1f572cacb1c9b520a7f5271ce75c9ae2f4862c9.tar.gz
* remove unessessary script2.0
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;
-}
-
-
-
-
-