Fix quoting bug in --without-export implementation.

This commit is contained in:
Jason Evans 2013-01-22 16:46:27 -08:00
parent 42ba90eb7f
commit 2625c8968e

View File

@ -475,7 +475,7 @@ done
AC_ARG_WITH([export], AC_ARG_WITH([export],
[AS_HELP_STRING([--without-export], [disable exporting jemalloc public APIs])], [AS_HELP_STRING([--without-export], [disable exporting jemalloc public APIs])],
[if test "x$with_export" = "xno"; then [if test "x$with_export" = "xno"; then
AC_DEFINE([JEMALLOC_EXPORT],[])] AC_DEFINE([JEMALLOC_EXPORT],[])
fi] fi]
) )