From: Stefano Lattarini Date: Sun, 4 Mar 2012 12:02:57 +0000 (+0100) Subject: cosmetics: remove useless escaping for "'" character X-Git-Tag: v1.11b~50 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7f9974c75fc6cdd9821b887afac94ef0be415bc2;p=thirdparty%2Fautomake.git cosmetics: remove useless escaping for "'" character --- diff --git a/automake.in b/automake.in index 8ea1587b0..44b00355b 100644 --- a/automake.in +++ b/automake.in @@ -3615,7 +3615,7 @@ sub handle_tags if (var ('SUBDIRS')) { $output_rules .= ("tags-recursive:\n" - . "\tlist=\'\$(SUBDIRS)\'; for subdir in \$\$list; do \\\n" + . "\tlist='\$(SUBDIRS)'; for subdir in \$\$list; do \\\n" # Never fail here if a subdir fails; it # isn't important. . "\t test \"\$\$subdir\" = . || (\$(am__cd) \$\$subdir" @@ -3626,7 +3626,7 @@ sub handle_tags &depend ('.MAKE', 'tags-recursive'); $output_rules .= ("ctags-recursive:\n" - . "\tlist=\'\$(SUBDIRS)\'; for subdir in \$\$list; do \\\n" + . "\tlist='\$(SUBDIRS)'; for subdir in \$\$list; do \\\n" # Never fail here if a subdir fails; it # isn't important. . "\t test \"\$\$subdir\" = . || (\$(am__cd) \$\$subdir" @@ -3637,7 +3637,7 @@ sub handle_tags &depend ('.MAKE', 'ctags-recursive'); $output_rules .= ("cscopelist-recursive:\n" - . "\tlist=\'\$(SUBDIRS)\'; for subdir in \$\$list; do \\\n" + . "\tlist='\$(SUBDIRS)'; for subdir in \$\$list; do \\\n" # Never fail here if a subdir fails; it # isn't important. . "\t test \"\$\$subdir\" = . || (\$(am__cd) \$\$subdir" diff --git a/tests/defs b/tests/defs index 565df7334..447c89e6b 100644 --- a/tests/defs +++ b/tests/defs @@ -844,8 +844,8 @@ do # Make sure we have makeinfo, and it understands '--html'. echo "$me: running makeinfo --html --version" makeinfo --html --version \ - || skip_all_ "cannot find a makeinfo program that groks the" \ - "\'--html' option" + || skip_all_ "cannot find a makeinfo program that groks" \ + "the '--html' option" ;; mingw) uname_s=`uname -s || echo UNKNOWN`