]> git.ipfire.org Git - thirdparty/automake.git/commitdiff
tests: fix syntax error in 'silentcxx-gcc.test'
authorStefano Lattarini <stefano.lattarini@gmail.com>
Sat, 7 May 2011 12:18:47 +0000 (14:18 +0200)
committerStefano Lattarini <stefano.lattarini@gmail.com>
Sat, 7 May 2011 13:35:06 +0000 (15:35 +0200)
* tests/silentcxx-gcc.test (for config_args in ...): Remove extra
trailing backslash from the list of looped-on items.

ChangeLog
tests/silentcxx-gcc.test

index 6021006fc960beff1b2df57163d259eb3f3f00db..495ab564778685acb9d5a0b96ea3186813c7cc87 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2011-05-07  Stefano Lattarini  <stefano.lattarini@gmail.com>
+
+       tests: fix syntax error in 'silentcxx-gcc.test'
+       * tests/silentcxx-gcc.test (for config_args in ...): Remove extra
+       trailing backslash from the list of looped-on items.
+
 2011-05-04  Stefano Lattarini  <stefano.lattarini@gmail.com>
 
        tests: drop useless requirements of 'g++'
index bc8beb917aee69e57e059cb46d2e1db16c921208..1f5768c2d025e6e09cf447f38b981f2c4f5697dd 100755 (executable)
@@ -70,7 +70,7 @@ $FGREP am_cv_CXX_dependencies_compiler_type configure
 # This apparently useless "for" loop is here to simplify the syncing
 # with sister test `silentcxx.test'.
 for config_args in \
-  am_cv_CXX_dependencies_compiler_type=gcc \
+  am_cv_CXX_dependencies_compiler_type=gcc
 do
   ./configure $config_args --enable-silent-rules
   $MAKE >stdout || { cat stdout; Exit 1; }