From owner-svn-src-all@FreeBSD.ORG Thu Jan 8 17:24:00 2015 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 16570115; Thu, 8 Jan 2015 17:24:00 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 02F5FCA4; Thu, 8 Jan 2015 17:24:00 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t08HNx3f090761; Thu, 8 Jan 2015 17:23:59 GMT (envelope-from pfg@FreeBSD.org) Received: (from pfg@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t08HNxUR090759; Thu, 8 Jan 2015 17:23:59 GMT (envelope-from pfg@FreeBSD.org) Message-Id: <201501081723.t08HNxUR090759@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: pfg set sender to pfg@FreeBSD.org using -f From: "Pedro F. Giffuni" Date: Thu, 8 Jan 2015 17:23:59 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r276837 - head/usr.bin/sed X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.18-1 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: Thu, 08 Jan 2015 17:24:00 -0000 Author: pfg Date: Thu Jan 8 17:23:59 2015 New Revision: 276837 URL: https://svnweb.freebsd.org/changeset/base/276837 Log: Partial revert of r276832: Do not bump the warns level as it still breaks the gcc build on sparc64 Reported by: jenkins Modified: head/usr.bin/sed/Makefile Modified: head/usr.bin/sed/Makefile ============================================================================== --- head/usr.bin/sed/Makefile Thu Jan 8 17:23:05 2015 (r276836) +++ head/usr.bin/sed/Makefile Thu Jan 8 17:23:59 2015 (r276837) @@ -6,6 +6,8 @@ PROG= sed SRCS= compile.c main.c misc.c process.c +WARNS?= 2 + .if ${MK_TESTS} != "no" SUBDIR+= tests .endif