Return-Path: X-Original-To: apmail-subversion-commits-archive@minotaur.apache.org Delivered-To: apmail-subversion-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 3CCD410E26 for ; Fri, 25 Oct 2013 00:46:01 +0000 (UTC) Received: (qmail 17726 invoked by uid 500); 25 Oct 2013 00:46:01 -0000 Delivered-To: apmail-subversion-commits-archive@subversion.apache.org Received: (qmail 17709 invoked by uid 500); 25 Oct 2013 00:46:01 -0000 Mailing-List: contact commits-help@subversion.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@subversion.apache.org Delivered-To: mailing list commits@subversion.apache.org Received: (qmail 17702 invoked by uid 99); 25 Oct 2013 00:46:01 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 25 Oct 2013 00:46:01 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.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; Fri, 25 Oct 2013 00:45:58 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id DD8B72388980; Fri, 25 Oct 2013 00:45:37 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1535597 - /subversion/trunk/build/ac-macros/compiler.m4 Date: Fri, 25 Oct 2013 00:45:37 -0000 To: commits@subversion.apache.org From: brane@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20131025004537.DD8B72388980@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: brane Date: Fri Oct 25 00:45:37 2013 New Revision: 1535597 URL: http://svn.apache.org/r1535597 Log: Fix typo in C++ flags setup macro. No wonder -O2 crept into the C++ compiler flags even with --disable-optimize. * build/ac-macros/compiler.m4 (SVN_CXX_MODE_SETUP): It's all about CXXFLAGS, not CFLAGS. Duh. Modified: subversion/trunk/build/ac-macros/compiler.m4 Modified: subversion/trunk/build/ac-macros/compiler.m4 URL: http://svn.apache.org/viewvc/subversion/trunk/build/ac-macros/compiler.m4?rev=1535597&r1=1535596&r2=1535597&view=diff ============================================================================== --- subversion/trunk/build/ac-macros/compiler.m4 (original) +++ subversion/trunk/build/ac-macros/compiler.m4 Fri Oct 25 00:45:37 2013 @@ -102,7 +102,7 @@ AC_DEFUN([SVN_CXX_MODE_SETUP], SVN_CXXFLAGS_ADD_IFELSE([-std=c++98]) fi - CXXMODEFLAGS="$CFLAGS" + CXXMODEFLAGS="$CXXFLAGS" CXXFLAGS="" if test "$GXX" = "yes"; then