From patchwork Thu Jul 21 23:52:03 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Theodore Ts'o X-Patchwork-Id: 106193 Return-Path: X-Original-To: patchwork-incoming@ozlabs.org Delivered-To: patchwork-incoming@ozlabs.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by ozlabs.org (Postfix) with ESMTP id 91954B6F7A for ; Fri, 22 Jul 2011 09:52:14 +1000 (EST) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753161Ab1GUXwH (ORCPT ); Thu, 21 Jul 2011 19:52:07 -0400 Received: from li9-11.members.linode.com ([67.18.176.11]:49501 "EHLO test.thunk.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753172Ab1GUXwG (ORCPT ); Thu, 21 Jul 2011 19:52:06 -0400 Received: from root (helo=tytso-glaptop) by test.thunk.org with local-esmtp (Exim 4.69) (envelope-from ) id 1Qk32D-0005Ai-HN; Thu, 21 Jul 2011 23:52:05 +0000 Received: from tytso by tytso-glaptop with local (Exim 4.71) (envelope-from ) id 1Qk32C-00018j-Ec; Thu, 21 Jul 2011 19:52:04 -0400 From: Theodore Ts'o To: Ext4 Developers List , xfs@oss.sgi.com Cc: Theodore Ts'o Subject: [PATCH XFSTESTS 2/3] Build without enabling DEBUG by default Date: Thu, 21 Jul 2011 19:52:03 -0400 Message-Id: <1311292324-4348-2-git-send-email-tytso@mit.edu> X-Mailer: git-send-email 1.7.4.1.22.gec8e1.dirty In-Reply-To: <1311292324-4348-1-git-send-email-tytso@mit.edu> References: <1311292324-4348-1-git-send-email-tytso@mit.edu> X-SA-Exim-Connect-IP: X-SA-Exim-Mail-From: tytso@thunk.org X-SA-Exim-Scanned: No (on test.thunk.org); SAEximRunCond expanded to false Sender: linux-ext4-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-ext4@vger.kernel.org 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 72fbbb7..f468f50 100644 --- a/m4/package_globals.m4 +++ b/m4/package_globals.m4 @@ -15,7 +15,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)