From owner-svn-src-all@FreeBSD.ORG Fri Dec 16 17:02:26 2011 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 B33B31065670; Fri, 16 Dec 2011 17:02:26 +0000 (UTC) (envelope-from dim@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 8703E8FC08; Fri, 16 Dec 2011 17:02:26 +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 pBGH2Q8M018743; Fri, 16 Dec 2011 17:02:26 GMT (envelope-from dim@svn.freebsd.org) Received: (from dim@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id pBGH2QRB018739; Fri, 16 Dec 2011 17:02:26 GMT (envelope-from dim@svn.freebsd.org) Message-Id: <201112161702.pBGH2QRB018739@svn.freebsd.org> From: Dimitry Andric Date: Fri, 16 Dec 2011 17:02:26 +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: r228590 - in head: lib/libsm libexec/mail.local libexec/smrsh 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: Fri, 16 Dec 2011 17:02:26 -0000 Author: dim Date: Fri Dec 16 17:02:25 2011 New Revision: 228590 URL: http://svn.freebsd.org/changeset/base/228590 Log: Fix typos in the comments about clang warnings in several sendmail-related Makefiles. Spotted by: arundel MFC after: 1 week Modified: head/lib/libsm/Makefile head/libexec/mail.local/Makefile head/libexec/smrsh/Makefile Modified: head/lib/libsm/Makefile ============================================================================== --- head/lib/libsm/Makefile Fri Dec 16 16:53:54 2011 (r228589) +++ head/lib/libsm/Makefile Fri Dec 16 17:02:25 2011 (r228590) @@ -19,9 +19,9 @@ CFLAGS+=${SENDMAIL_CFLAGS} WARNS?= 2 .if ${CC:T:Mclang} == "clang" -# Unfortunately, clang gives a warning about sendmail code that cannot +# Unfortunately, clang gives warnings about sendmail code that cannot # be turned off yet. Since this is contrib code, and we don't really -# care about the warnings, just turn make them non-fatal for now. +# care about the warnings, just make them non-fatal for now. NO_WERROR= .endif Modified: head/libexec/mail.local/Makefile ============================================================================== --- head/libexec/mail.local/Makefile Fri Dec 16 16:53:54 2011 (r228589) +++ head/libexec/mail.local/Makefile Fri Dec 16 17:02:25 2011 (r228590) @@ -15,7 +15,7 @@ WFORMAT=0 .if ${CC:T:Mclang} == "clang" # Unfortunately, clang gives warnings about sendmail code that cannot # be turned off yet. Since this is contrib code, and we don't really -# care about the warnings, just turn make them non-fatal for now. +# care about the warnings, just make them non-fatal for now. NO_WERROR= .endif Modified: head/libexec/smrsh/Makefile ============================================================================== --- head/libexec/smrsh/Makefile Fri Dec 16 16:53:54 2011 (r228589) +++ head/libexec/smrsh/Makefile Fri Dec 16 17:02:25 2011 (r228590) @@ -20,7 +20,7 @@ WARNS?= 2 .if ${CC:T:Mclang} == "clang" # Unfortunately, clang gives warnings about sendmail code that cannot # be turned off yet. Since this is contrib code, and we don't really -# care about the warnings, just turn make them non-fatal for now. +# care about the warnings, just make them non-fatal for now. NO_WERROR= .endif