From owner-svn-src-head@FreeBSD.ORG Mon Nov 7 09:42:23 2011 Return-Path: Delivered-To: svn-src-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 036A4106566C; Mon, 7 Nov 2011 09:42:23 +0000 (UTC) (envelope-from ed@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id E7D2F8FC0C; Mon, 7 Nov 2011 09:42:22 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id pA79gMws068039; Mon, 7 Nov 2011 09:42:22 GMT (envelope-from ed@svn.freebsd.org) Received: (from ed@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id pA79gMA3068037; Mon, 7 Nov 2011 09:42:22 GMT (envelope-from ed@svn.freebsd.org) Message-Id: <201111070942.pA79gMA3068037@svn.freebsd.org> From: Ed Schouten Date: Mon, 7 Nov 2011 09:42:22 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r227299 - head/usr.bin/dc X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 07 Nov 2011 09:42:23 -0000 Author: ed Date: Mon Nov 7 09:42:22 2011 New Revision: 227299 URL: http://svn.freebsd.org/changeset/base/227299 Log: Remove unneeded CFLAGS. Such optimisations should not be performed in this Makefile. Also, uqs@ suggested they have no effect, because the checksum of the resulting binary is unchanged. Discussed with: gabor, uqs Modified: head/usr.bin/dc/Makefile Modified: head/usr.bin/dc/Makefile ============================================================================== --- head/usr.bin/dc/Makefile Mon Nov 7 09:29:10 2011 (r227298) +++ head/usr.bin/dc/Makefile Mon Nov 7 09:42:22 2011 (r227299) @@ -3,7 +3,6 @@ PROG= dc SRCS= dc.c bcode.c inout.c mem.c stack.c -CFLAGS+=--param max-inline-insns-single=64 DPADD= ${LIBCRYPTO} LDADD= -lcrypto