summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJason Evans <je@fb.com>2013-01-23 00:46:27 (GMT)
committerJason Evans <je@fb.com>2013-01-23 00:46:27 (GMT)
commit2625c8968e88de435d6452e6f202c8dbdeb1775b (patch)
tree98766bb9e2cbd440da9b9ed16b9733887278195c
parent42ba90eb7f9e12d9cf6d7f9be82e239f0ffb04f5 (diff)
downloadjemalloc-2625c8968e88de435d6452e6f202c8dbdeb1775b.zip
jemalloc-2625c8968e88de435d6452e6f202c8dbdeb1775b.tar.gz
jemalloc-2625c8968e88de435d6452e6f202c8dbdeb1775b.tar.bz2
Fix quoting bug in --without-export implementation.
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index 8c13082..c270662 100644
--- a/configure.ac
+++ b/configure.ac
@@ -475,7 +475,7 @@ done
AC_ARG_WITH([export],
[AS_HELP_STRING([--without-export], [disable exporting jemalloc public APIs])],
[if test "x$with_export" = "xno"; then
- AC_DEFINE([JEMALLOC_EXPORT],[])]
+ AC_DEFINE([JEMALLOC_EXPORT],[])
fi]
)