On 10/10/2013 08:24 PM, Eric Blake wrote:
Oh, I see the typo; pushing this.
diff --git i/ChangeLog w/ChangeLog
index 3f6bf07..0d97328 100644
--- i/ChangeLog
+++ w/ChangeLog
@@ -1,3 +1,9 @@
+2013-10-10 Eric Blake<ebl...@redhat.com>
+
+ strtoumax: fix typo in previous commit.
+ * modules/strtoumax (Depends-on): Fix typo.
+ * modules/strtoimax (Depends-on): Likewise.
+
This did not fix the test error from configure.
Just creating a testdir on a CentOS 5 host and running configure results
in the same error from test:
$ git describe
v0.0-8046-gfa1db0d
$ ./gnulib-tool --create-testdir --with-tests --dir=../strtoumax strtoumax
$ cd ../strtoumax
$ ./configure | grep unary
./configure: line 7680: test: =: unary operator expected
./configure: line 7674: test: =: unary operator expected
$ sed -n 7680p configure
if test $HAVE_STRTOUMAX = 0 || test $REPLACE_STRTOUMAX = 1; then
$ sed -n 7674p gltests/configure
if test $HAVE_STRTOUMAX = 0 || test $REPLACE_STRTOUMAX = 1; then
-tgc