From bbfcd2f1a92c9bdbb8d7d7d0a8a8c6665c316747 Mon Sep 17 00:00:00 2001 From: Eric Blake Date: Thu, 10 Oct 2013 13:34:46 -0600 Subject: [PATCH] strtoumax: fix another typo in previous commit I missed one in the last commit... * modules/strtoumax (configure.ac): Fix typo. * modules/strtoimax (configure.ac): Likewise. Signed-off-by: Eric Blake --- modules/strtoimax | 2 +- modules/strtoumax | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/strtoimax b/modules/strtoimax index 5b0ea91b8..36a96de4b 100644 --- a/modules/strtoimax +++ b/modules/strtoimax @@ -14,7 +14,7 @@ strtoll [{ test $HAVE_DECL_STRTOIMAX = 0 || test $REPLACE_STRTOIMAX = 1; configure.ac: gl_FUNC_STRTOIMAX -if test $HAVE_STRTOIMAX = 0 || test $REPLACE_STRTOIMAX = 1; then +if test $HAVE_DECL_STRTOIMAX = 0 || test $REPLACE_STRTOIMAX = 1; then AC_LIBOBJ([strtoimax]) gl_PREREQ_STRTOIMAX fi diff --git a/modules/strtoumax b/modules/strtoumax index 694184b21..725f523c2 100644 --- a/modules/strtoumax +++ b/modules/strtoumax @@ -15,7 +15,7 @@ strtoull [{ test $HAVE_DECL_STRTOUMAX = 0 || test $REPLACE_STRTOUMAX = 1; configure.ac: gl_FUNC_STRTOUMAX -if test $HAVE_STRTOUMAX = 0 || test $REPLACE_STRTOUMAX = 1; then +if test $HAVE_DECL_STRTOUMAX = 0 || test $REPLACE_STRTOUMAX = 1; then AC_LIBOBJ([strtoumax]) gl_PREREQ_STRTOUMAX fi -- 2.11.0