From: Theodore Ts'o Subject: [PATCH XFSPROGS 2/3] Build without enabling DEBUG by default Date: Thu, 21 Jul 2011 19:50:36 -0400 Message-ID: <1311292237-4155-2-git-send-email-tytso@mit.edu> References: <1311292237-4155-1-git-send-email-tytso@mit.edu> Cc: Theodore Ts'o To: Ext4 Developers List , xfs@oss.sgi.com Return-path: Received: from li9-11.members.linode.com ([67.18.176.11]:49494 "EHLO test.thunk.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752762Ab1GUXuo (ORCPT ); Thu, 21 Jul 2011 19:50:44 -0400 In-Reply-To: <1311292237-4155-1-git-send-email-tytso@mit.edu> Sender: linux-ext4-owner@vger.kernel.org List-ID: The tree currently will blow out with a build failure if -DDEBUG is specified. Signed-off-by: "Theodore Ts'o" --- m4/package_globals.m4 | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/m4/package_globals.m4 b/m4/package_globals.m4 index e469671..d2a3e2f 100644 --- a/m4/package_globals.m4 +++ b/m4/package_globals.m4 @@ -17,7 +17,7 @@ AC_DEFUN([AC_PACKAGE_GLOBALS], test -z "$BUILD_VERSION" || pkg_release="$BUILD_VERSION" AC_SUBST(pkg_release) - DEBUG=${DEBUG:-'-DDEBUG'} dnl -DNDEBUG + DEBUG=${DEBUG:-'-DNDEBUG'} dnl -DNDEBUG debug_build="$DEBUG" AC_SUBST(debug_build) -- 1.7.4.1.22.gec8e1.dirty