diff options
author | Mike Hommey <mh@glandium.org> | 2012-04-20 06:38:39 (GMT) |
---|---|---|
committer | Jason Evans <jasone@canonware.com> | 2012-04-22 04:30:00 (GMT) |
commit | 14103d3598e7b828e79a81f2978dc08348677b02 (patch) | |
tree | 880c1fc5d16c0b959e4f98886eb692aee5c5ad12 | |
parent | 08e2221e99ef96277331f43e87d3f3ff770d27a7 (diff) | |
download | jemalloc-14103d3598e7b828e79a81f2978dc08348677b02.zip jemalloc-14103d3598e7b828e79a81f2978dc08348677b02.tar.gz jemalloc-14103d3598e7b828e79a81f2978dc08348677b02.tar.bz2 |
Fix intmax_t configure error message
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 5bdddfa..396b5ef 100644 --- a/configure.ac +++ b/configure.ac @@ -164,7 +164,7 @@ elif test "x${ac_cv_sizeof_intmax_t}" = "x8" ; then elif test "x${ac_cv_sizeof_intmax_t}" = "x4" ; then LG_SIZEOF_INTMAX_T=2 else - AC_MSG_ERROR([Unsupported intmax_t size: ${ac_cv_sizeof_long}]) + AC_MSG_ERROR([Unsupported intmax_t size: ${ac_cv_sizeof_intmax_t}]) fi AC_DEFINE_UNQUOTED([LG_SIZEOF_INTMAX_T], [$LG_SIZEOF_INTMAX_T]) |