From: christian mueller Date: Fri, 23 Mar 2012 11:52:33 +0000 (+0100) Subject: * remove unessessary script X-Git-Tag: build/2012-06-15.125948~27 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=a1f572cacb1c9b520a7f5271ce75c9ae2f4862c9;p=profile%2Fivi%2Faudiomanager.git * remove unessessary script Signed-off-by: christian mueller --- 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("", ); - 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; -} - - - - -