From: Andreas Schwab Date: Thu, 14 Jul 2016 08:26:24 +0000 (+0200) Subject: Fix configure summary for hybrid malloc configurations X-Git-Tag: emacs-26.0.90~1840^2~57 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=453f883ef81388c39193b9289ef703954e9bc270;p=emacs.git Fix configure summary for hybrid malloc configurations * configure.ac ("$hybrid_malloc" = yes): Set GNU_MALLOC to no, parenthesize value of GNU_MALLOC_reason. --- diff --git a/configure.ac b/configure.ac index aaddfcd7386..dd1af5b435b 100644 --- a/configure.ac +++ b/configure.ac @@ -2177,8 +2177,8 @@ elif test "$hybrid_malloc" = yes; then AC_DEFINE(HYBRID_MALLOC, 1, [Define to use gmalloc before dumping and the system malloc after.]) HYBRID_MALLOC=1 - GNU_MALLOC= - GNU_MALLOC_reason="only before dumping" + GNU_MALLOC=no + GNU_MALLOC_reason=" (only before dumping)" GMALLOC_OBJ=gmalloc.o VMLIMIT_OBJ= else