From ec5050b6b2680e6d1ef4998e60358f19e35abcd0 Mon Sep 17 00:00:00 2001 From: Ion-Mihai Tetcu Date: Sun, 10 May 2009 16:28:52 +0000 Subject: When naming the split patch files, replace the original path '/' with '__' instead of a single '_' to follow the current patch naming guidelines. --- Tools/scripts/splitpatch.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Tools') diff --git a/Tools/scripts/splitpatch.pl b/Tools/scripts/splitpatch.pl index 9b69c89fb003..1570b6f8d197 100755 --- a/Tools/scripts/splitpatch.pl +++ b/Tools/scripts/splitpatch.pl @@ -57,7 +57,7 @@ sub cstart if (!/^---\s+\d+,\d+\s+/ && /^---\s+(\S+)\s+/) { $state = \&body; $out = $1; - $out =~ s|/|_|g; + $out =~ s|/|__|g; $out = "patch-$out"; if (open OUT, "> $out") { print OUT $fl; -- cgit v1.2.3