]> git.ipfire.org Git - thirdparty/automake.git/commitdiff
tests: fix spurious failure with older autoconf
authorStefano Lattarini <stefano.lattarini@gmail.com>
Thu, 16 Feb 2012 09:58:03 +0000 (10:58 +0100)
committerStefano Lattarini <stefano.lattarini@gmail.com>
Thu, 16 Feb 2012 09:58:03 +0000 (10:58 +0100)
* tests/conffile-leading-dot.test: Relax grepping of 'config.status'
stderr, to cater for older autoconf.  Issue revealed by a failure
with autoconf 2.63 on Cygwin 1.5.25.

tests/conffile-leading-dot.test

index 382124e2546c454a12613fab821d74810a00ebbe..bfe81b5e01cbabbf2c502644363ba61fcd26854e 100755 (executable)
@@ -55,6 +55,6 @@ echo foo = bazbazbaz > Makefile.am
 # giving a bogus warning.
 $MAKE 2>stderr && { cat stderr >&2 Exit 1; }
 cat stderr >&2
-grep "config\\.status:.*invalid argument.*[\`\"']Makefile[\`\"']" stderr
+grep "config\\.status:.*invalid argument.*Makefile" stderr
 
 :