diff options
author | Bruce Korb <ddsinc09@ix.netcom.com> | 1999-06-10 14:36:02 +0000 |
---|---|---|
committer | Bruce Korb <korbb@gcc.gnu.org> | 1999-06-10 14:36:02 +0000 |
commit | b45293b5210642da7bfea2d3dcc7ba2157c87284 (patch) | |
tree | 0144458d517b0b924000c1d1d9daa3878d28192c /gcc/fixinc | |
parent | 0aa54da2ef5219a097442dfeb17b082b6361d41b (diff) | |
download | gcc-b45293b5210642da7bfea2d3dcc7ba2157c87284.zip gcc-b45293b5210642da7bfea2d3dcc7ba2157c87284.tar.gz gcc-b45293b5210642da7bfea2d3dcc7ba2157c87284.tar.bz2 |
Correct quoting rules
From-SVN: r27470
Diffstat (limited to 'gcc/fixinc')
-rw-r--r-- | gcc/fixinc/inclhack.def | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/fixinc/inclhack.def b/gcc/fixinc/inclhack.def index 829c83e..7f7401e 100644 --- a/gcc/fixinc/inclhack.def +++ b/gcc/fixinc/inclhack.def @@ -350,7 +350,7 @@ fix = { * Also, only accept double slashes that are not part of URL's * and are not the end of a quoted string. */ - test = " -z \"`echo ${file} | egrep \'(CC|cxx|\+\+)/\' `\""; + test = ' -z "`echo ${file} | egrep \'(CC|cxx|\+\+)/\'`"'; select = '(^|[^:])//[^"*]'; sed = 's,^//.*$,,'; sed = 's,[^:]//[^"].*$,,'; |