From owner-cvs-src@FreeBSD.ORG Sat May 3 18:19:47 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7187437B401; Sat, 3 May 2003 18:19:47 -0700 (PDT) Received: from dragon.nuxi.com (trang.nuxi.com [66.93.134.19]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8862643FE3; Sat, 3 May 2003 18:19:46 -0700 (PDT) (envelope-from obrien@NUXI.com) Received: from dragon.nuxi.com (obrien@localhost [127.0.0.1]) by dragon.nuxi.com (8.12.9/8.12.9) with ESMTP id h441Hsm2055425; Sat, 3 May 2003 18:17:58 -0700 (PDT) (envelope-from obrien@dragon.nuxi.com) Received: (from obrien@localhost) by dragon.nuxi.com (8.12.9/8.12.9/Submit) id h441HqrZ055424; Sat, 3 May 2003 18:17:52 -0700 (PDT) Date: Sat, 3 May 2003 18:17:52 -0700 From: "David O'Brien" To: Giorgos Keramidas Message-ID: <20030504011752.GA50067@dragon.nuxi.com> References: <20030503212154.GA4826@gothmog.gr> <200305032130.h43LUJ8c022020@grimreaper.grondar.org> <20030503214427.GA5192@gothmog.gr> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20030503214427.GA5192@gothmog.gr> User-Agent: Mutt/1.4i Follow-up-To: src-committers@freebsd.org, cvs-src@freebsd.org, cvs-all@freebsd.org X-Operating-System: FreeBSD 5.0-CURRENT Organization: The NUXI BSD Group X-Pgp-Rsa-Fingerprint: B7 4D 3E E9 11 39 5F A3 90 76 5D 69 58 D9 98 7A X-Pgp-Rsa-Keyid: 1024/34F9F9D5 cc: cvs-src@freebsd.org cc: src-committers@freebsd.org cc: cvs-all@freebsd.org cc: Mark Murray Subject: Re: cvs commit: src/bin/ls extern.h ls.c print.c util.c src/bin/pax ar_io.c ar_subs.c cache.c cpio.c extern.h gen_subs.c getoldopt.c options.c pat_rep.c pax.c pax.h src/bin/ps fmt.c src/bin/rcp rcp.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: src-committers@freebsd.org, cvs-src@freebsd.org, cvs-all@freebsd.org List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 04 May 2003 01:19:48 -0000 On Sun, May 04, 2003 at 12:44:27AM +0300, Giorgos Keramidas wrote: > : giorgos@gothmog[00:36]/a/freebsd/src/bin/ps$ rm print.o > : giorgos@gothmog[00:36]/a/freebsd/src/bin/ps$ make WARNS=0 print.o > : cc -O2 -Wall -pipe -DLAZY_PS -c print.c > : print.c: In function `started': > : print.c:405: warning: `%y' yields only last 2 digits of year > : print.c: In function `lstarted': > : print.c:422: warning: `%c' yields only last 2 digits of year in some locales on non-BSD systems > : > : giorgos@gothmog[00:36]/a/freebsd/src/bin/ps$ rm print.o > : giorgos@gothmog[00:36]/a/freebsd/src/bin/ps$ make WARNS=1 print.o > : cc -O2 -Wall -pipe -DLAZY_PS -Wsystem-headers -Werror -c print.c ... > The warnings are a result of -Wformat-y2k, which is included in -Wall: Why doens't WARNS=1 give you "-Wall -Wno-format-y2k" as it is supose to? Do you have some local settings in /etc/make.conf??