Return-Path: Delivered-To: apmail-harmony-commits-archive@www.apache.org Received: (qmail 27112 invoked from network); 25 Feb 2009 15:29:45 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 25 Feb 2009 15:29:45 -0000 Received: (qmail 75080 invoked by uid 500); 25 Feb 2009 15:29:45 -0000 Delivered-To: apmail-harmony-commits-archive@harmony.apache.org Received: (qmail 75057 invoked by uid 500); 25 Feb 2009 15:29:45 -0000 Mailing-List: contact commits-help@harmony.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@harmony.apache.org Delivered-To: mailing list commits@harmony.apache.org Received: (qmail 75048 invoked by uid 99); 25 Feb 2009 15:29:45 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 25 Feb 2009 07:29:44 -0800 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 25 Feb 2009 15:29:42 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id DCDEC238899B; Wed, 25 Feb 2009 15:29:21 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r747823 - /harmony/enhanced/classlib/trunk/depends/build/defines.mk Date: Wed, 25 Feb 2009 15:29:21 -0000 To: commits@harmony.apache.org From: odeakin@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20090225152921.DCDEC238899B@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: odeakin Date: Wed Feb 25 15:29:20 2009 New Revision: 747823 URL: http://svn.apache.org/viewvc?rev=747823&view=rev Log: -Werror is not a valid compiler option on zOS. Modified: harmony/enhanced/classlib/trunk/depends/build/defines.mk Modified: harmony/enhanced/classlib/trunk/depends/build/defines.mk URL: http://svn.apache.org/viewvc/harmony/enhanced/classlib/trunk/depends/build/defines.mk?rev=747823&r1=747822&r2=747823&view=diff ============================================================================== --- harmony/enhanced/classlib/trunk/depends/build/defines.mk (original) +++ harmony/enhanced/classlib/trunk/depends/build/defines.mk Wed Feb 25 15:29:20 2009 @@ -34,7 +34,11 @@ EXERPATHPREFIX = -Xlinker -z -Xlinker origin -Xlinker -rpath \ -Xlinker \$$ORIGIN/ -Xlinker -rpath-link \ -Xlinker +ifneq ($(HY_OS),zos) WARNFLAGS=-Werror +else +WARNFLAGS= +endif include $(HY_HDK)/build/make/platform/$(HY_PLATFORM).mk