aboutsummaryrefslogtreecommitdiffstats
path: root/utils/mkpatch
diff options
context:
space:
mode:
authorReid Spencer <rspencer@reidspencer.com>2007-01-11 06:51:56 +0000
committerReid Spencer <rspencer@reidspencer.com>2007-01-11 06:51:56 +0000
commit40beb40f4b959c10bea7a52bcb81c22fb4989565 (patch)
tree096f009d79eac479c0f0557cc2fa5d304420a53c /utils/mkpatch
parentac618e6a9d0e63ac7c71231393c557feaf787a85 (diff)
downloadexternal_llvm-40beb40f4b959c10bea7a52bcb81c22fb4989565.zip
external_llvm-40beb40f4b959c10bea7a52bcb81c22fb4989565.tar.gz
external_llvm-40beb40f4b959c10bea7a52bcb81c22fb4989565.tar.bz2
Put in some needed \ at the end of lines!!!
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@33070 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils/mkpatch')
-rwxr-xr-xutils/mkpatch2
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/mkpatch b/utils/mkpatch
index 71ce229..ce105af 100755
--- a/utils/mkpatch
+++ b/utils/mkpatch
@@ -29,7 +29,7 @@ cvs diff -Ntdup -5 >> "$NAME".patch.raw 2>&1 \
echo "mkpatch: Removing cruft from the patch file"
sed "$NAME".patch.raw -e '/^[?] .*/d' -e '/^cvs diff: Diffing/d' | awk '\
BEGIN { deleting = 0; } \
-/^Index: .*[.]cvs$/ { deleting = 1; fname=substr($0,7);
+/^Index: .*[.]cvs$/ { deleting = 1; fname=substr($0,7); \
print "Skipping: ", fname > "/dev/stderr"; } \
/^Index:.*/ && !/^Index: .*[.]cvs$/ { deleting = 0; } \
{ if (! deleting) { print; } } \