forked from OSchip/llvm-project
Join two lines that caused awk to squak on some platforms.
llvm-svn: 33274
This commit is contained in:
parent
d85662f67d
commit
7dac4c31a4
|
@ -32,6 +32,6 @@ BEGIN { deleting = 0; } \
|
|||
/^Index: .*[.]cvs$/ { deleting = 1; fname=substr($0,7); \
|
||||
print "Skipping: ", fname > "/dev/stderr"; } \
|
||||
/^Index:.*/ && !/^Index: .*[.]cvs$/ { deleting = 0; } \
|
||||
{ if (! deleting) { print; } } \
|
||||
' > "$NAME".patch || error "sed/awk cleanup failed"
|
||||
{ if (! deleting) { print; } } ' > "$NAME".patch || \
|
||||
error "sed/awk cleanup failed"
|
||||
|
||||
|
|
Loading…
Reference in New Issue