Corrected quote formation

From-SVN: r27471
This commit is contained in:
Bruce Korb 1999-06-10 14:43:44 +00:00
parent b45293b521
commit 9a726fc16f
2 changed files with 2 additions and 2 deletions

View file

@ -606,7 +606,7 @@ tSCC zNo_Double_SlashSelect0[] =
* perform the 'test' shell command - do fix on success * perform the 'test' shell command - do fix on success
*/ */
tSCC zNo_Double_SlashTest0[] = tSCC zNo_Double_SlashTest0[] =
" -z \"`echo ${file} | egrep '(CC|cxx|++)/' `\""; " -z \"`echo ${file} | egrep '(CC|cxx|\\+\\+)/'`\"";
#define NO_DOUBLE_SLASH_TEST_CT 2 #define NO_DOUBLE_SLASH_TEST_CT 2
#define NO_DOUBLE_SLASH_RE_CT 1 #define NO_DOUBLE_SLASH_RE_CT 1

View file

@ -748,7 +748,7 @@ struct rusage;
# Fix 17: No_Double_Slash # Fix 17: No_Double_Slash
# #
if ( test -n "`egrep '(^|[^:])//[^\"*]' ${file}`" -a \ if ( test -n "`egrep '(^|[^:])//[^\"*]' ${file}`" -a \
'(' -z "`echo ${file} | egrep '(CC|cxx|++)/' `" ')' '(' -z "`echo ${file} | egrep '(CC|cxx|\+\+)/'`" ')'
) > /dev/null 2>&1 ; then ) > /dev/null 2>&1 ; then
fixlist="${fixlist} fixlist="${fixlist}
no_double_slash" no_double_slash"