From owner-svn-src-all@FreeBSD.ORG Wed Oct 20 07:54:44 2010 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 41D11106564A; Wed, 20 Oct 2010 07:54:44 +0000 (UTC) (envelope-from obrien@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 2FBC28FC1F; Wed, 20 Oct 2010 07:54:44 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id o9K7siVP042076; Wed, 20 Oct 2010 07:54:44 GMT (envelope-from obrien@svn.freebsd.org) Received: (from obrien@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id o9K7si1j042074; Wed, 20 Oct 2010 07:54:44 GMT (envelope-from obrien@svn.freebsd.org) Message-Id: <201010200754.o9K7si1j042074@svn.freebsd.org> From: "David E. O'Brien" Date: Wed, 20 Oct 2010 07:54:44 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-8@freebsd.org X-SVN-Group: stable-8 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r214104 - stable/8/bin/sh X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Oct 2010 07:54:44 -0000 Author: obrien Date: Wed Oct 20 07:54:43 2010 New Revision: 214104 URL: http://svn.freebsd.org/changeset/base/214104 Log: MFC: r213774: DEBUG_FLAGS should be used to enable extra debugging rather than frobbing CFLAGS directly. r213798: do not inline static functions if debugging Modified: stable/8/bin/sh/Makefile Directory Properties: stable/8/bin/sh/ (props changed) Modified: stable/8/bin/sh/Makefile ============================================================================== --- stable/8/bin/sh/Makefile Wed Oct 20 07:54:27 2010 (r214103) +++ stable/8/bin/sh/Makefile Wed Oct 20 07:54:43 2010 (r214104) @@ -21,7 +21,7 @@ LDADD= -ll -ledit -ltermcap LFLAGS= -8 # 8-bit lex scanner for arithmetic CFLAGS+=-DSHELL -I. -I${.CURDIR} # for debug: -# CFLAGS+= -g -DDEBUG=2 +# DEBUG_FLAGS+= -g -DDEBUG=2 -fno-inline WARNS?= 2 WFORMAT=0