From: Eric Blake Date: Thu, 10 Oct 2013 19:34:46 +0000 (-0600) Subject: strtoumax: fix another typo in previous commit X-Git-Tag: v0.1~18 X-Git-Url: http://erislabs.net/gitweb/?p=gnulib.git;a=commitdiff_plain;h=bbfcd2f1a92c9bdbb8d7d7d0a8a8c6665c316747 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 --- 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