diff options
author | Ion-Mihai Tetcu <itetcu@FreeBSD.org> | 2009-05-10 16:28:52 +0000 |
---|---|---|
committer | Ion-Mihai Tetcu <itetcu@FreeBSD.org> | 2009-05-10 16:28:52 +0000 |
commit | ec5050b6b2680e6d1ef4998e60358f19e35abcd0 (patch) | |
tree | 156998e79fba852de4d627bcdaad3e45c9366854 /Tools/scripts | |
parent | 17f3d4c9acc7daa78823ad13cbe5879466e148dd (diff) | |
download | ports-ec5050b6b2680e6d1ef4998e60358f19e35abcd0.tar.gz ports-ec5050b6b2680e6d1ef4998e60358f19e35abcd0.zip |
Notes
Diffstat (limited to 'Tools/scripts')
-rwxr-xr-x | Tools/scripts/splitpatch.pl | 2 |
1 files changed, 1 insertions, 1 deletions
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; |