From debbugs-submit-bounces@debbugs.gnu.org Thu Jan 19 08:46:43 2012 Received: (at submit) by debbugs.gnu.org; 19 Jan 2012 13:46:43 +0000 Received: from localhost ([127.0.0.1]:35197 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1RnsKA-0000p4-PF for submit@debbugs.gnu.org; Thu, 19 Jan 2012 08:46:43 -0500 Received: from eggs.gnu.org ([140.186.70.92]:48043) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1RnsK7-0000ow-SL for submit@debbugs.gnu.org; Thu, 19 Jan 2012 08:46:40 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1RnsIs-0007J2-Ho for submit@debbugs.gnu.org; Thu, 19 Jan 2012 08:45:28 -0500 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=-2.6 required=5.0 tests=BAYES_00,FREEMAIL_FROM, RCVD_IN_DNSWL_LOW,T_DKIM_INVALID autolearn=unavailable version=3.3.2 Received: from lists.gnu.org ([140.186.70.17]:35759) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RnsIs-0007It-G6 for submit@debbugs.gnu.org; Thu, 19 Jan 2012 08:45:22 -0500 Received: from eggs.gnu.org ([140.186.70.92]:57647) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RnsIn-0003SM-LJ for bug-automake@gnu.org; Thu, 19 Jan 2012 08:45:22 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1RnsIh-0007Hr-Ka for bug-automake@gnu.org; Thu, 19 Jan 2012 08:45:17 -0500 Received: from mail-ee0-f41.google.com ([74.125.83.41]:38471) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RnsIh-0007Hf-CV; Thu, 19 Jan 2012 08:45:11 -0500 Received: by eekc13 with SMTP id c13so1715123eek.0 for ; Thu, 19 Jan 2012 05:45:10 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=message-id:date:from:mime-version:to:cc:subject:content-type :content-transfer-encoding; bh=g8/bcmk9dr7JipnPVLqZKmSQZ6+eV8p8b1HeJsnm3y8=; b=oOJzzJfXIkYars3inyAzNvukbcveREkGr4SRVO8lZkpRH2e12n7+fH3ccuOXGuTAIg Nz7dd+RZE1oEwn7JTl5RaVNYIR88mxRgq0YeRD2/avgDIcbOZ4nhbYWAHpATX6BITAB0 o4tFZJm5NvLQP6NVYL9eZOWKt/Rj+Ul9jY83k= Received: by 10.14.10.167 with SMTP id 39mr1727115eev.109.1326980710319; Thu, 19 Jan 2012 05:45:10 -0800 (PST) Received: from [87.21.62.175] (host175-62-dynamic.21-87-r.retail.telecomitalia.it. [87.21.62.175]) by mx.google.com with ESMTPS id x43sm113549596eef.8.2012.01.19.05.45.08 (version=SSLv3 cipher=OTHER); Thu, 19 Jan 2012 05:45:08 -0800 (PST) Message-ID: <4F181E61.5060807@gmail.com> Date: Thu, 19 Jan 2012 14:45:05 +0100 From: Stefano Lattarini MIME-Version: 1.0 To: bug-automake@gnu.org Subject: automake: wrong use of F77FLAGS instead of FFLAGS? Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6 (newer, 3) X-Received-From: 140.186.70.17 X-Spam-Score: -3.4 (---) X-Debbugs-Envelope-To: submit Cc: "" X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: debbugs-submit-bounces@debbugs.gnu.org Errors-To: debbugs-submit-bounces@debbugs.gnu.org X-Spam-Score: -3.4 (---) Severity: minor thanks In the Automake repository, I'm seeing this: $ git grep F77FLAGS lib/Automake/Variable.pm: F77FLAGS => 'AC_PROG_F77', $ grep -C 10 F77FLAGS lib/Automake/Variable.pm # Macros shipped with Autoconf. my %_ac_macro_for_var = ( ALLOCA => 'AC_FUNC_ALLOCA', CC => 'AC_PROG_CC', CFLAGS => 'AC_PROG_CC', CXX => 'AC_PROG_CXX', CXXFLAGS => 'AC_PROG_CXX', F77 => 'AC_PROG_F77', F77FLAGS => 'AC_PROG_F77', FC => 'AC_PROG_FC', FCFLAGS => 'AC_PROG_FC', OBJC => 'AC_PROG_OBJC', OBJCFLAGS => 'AC_PROG_OBJC', RANLIB => 'AC_PROG_RANLIB', UPC => 'AM_PROG_UPC', UPCFLAGS => 'AM_PROG_UPC', YACC => 'AC_PROG_YACC', ); But autoconf uses FFLAGS, not F77FLAGS, as the variable where to look for switches for the Fortran 77 compiler: $ cd src/autoconf $ git grep F77FLAGS || echo NOT FOUND NOT FOUND $ grep FFLAGS lib/autoconf/fortran.m4 # dialects. Fortran 77 uses environment variables F77, FFLAGS, and FLIBS, ac_compile='$F77 -c $FFLAGS conftest.$ac_ext >&AS_MESSAGE_LOG_FD' ac_link='$F77 -o conftest$ac_exeext $FFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&AS_MESSAGE_LOG_FD' AC_ARG_VAR([FFLAGS], [Fortran 77 compiler flags])dnl And the autoconf documentation agrees with that: * Variable: FFLAGS Debugging and optimization options for the Fortran 77 compiler. If it is not set in the environment when configure runs, the default value is set when you call AC_PROG_F77 (or empty if you don't). configure uses this variable when compiling or linking programs to test for Fortran 77 features. ... ``Fortran 77'' Do compilation tests using F77 and use extension .f for test programs. Use compilation flags: FFLAGS. So, to all autoconfers: do you happen to know any reason for which Automake should use F77FLAGS? If not, I'll assume that is due to a typo or clerical mistake, and fix it (in 48 hours or so). Thanks, Stefano From debbugs-submit-bounces@debbugs.gnu.org Fri Jan 20 14:54:53 2012 Received: (at 10555) by debbugs.gnu.org; 20 Jan 2012 19:54:54 +0000 Received: from localhost ([127.0.0.1]:36973 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1RoKY1-0001Mk-Cv for submit@debbugs.gnu.org; Fri, 20 Jan 2012 14:54:53 -0500 Received: from mail-ey0-f172.google.com ([209.85.215.172]:48653) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1RoKXz-0001Md-6w for 10555@debbugs.gnu.org; Fri, 20 Jan 2012 14:54:52 -0500 Received: by eaai13 with SMTP id i13so443170eaa.3 for <10555@debbugs.gnu.org>; Fri, 20 Jan 2012 11:53:31 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=message-id:date:from:mime-version:to:cc:subject:references :in-reply-to:content-type; bh=cutaGTvtKnEZtqohIm+fNpRTkVdhNOR7a4l1lJsDXM8=; b=u7THGZwM1UZmMKtQ3jvB+4Xeh/QNUcmrwhviQnFTxJPhi8aq2F2aD2HtCfobY9RNW5 q2CzWX6sBZc1UtyeGp8lFBEutY4EQvi0AIUGWC44R1O1qbWg+JDO4bmbydyCNiF/tLvB 8Suqi5x665juC72ALushnWvSJJh8+SVDny71s= Received: by 10.213.9.4 with SMTP id j4mr6933509ebj.100.1327089211536; Fri, 20 Jan 2012 11:53:31 -0800 (PST) Received: from [87.2.95.39] (host39-95-dynamic.2-87-r.retail.telecomitalia.it. [87.2.95.39]) by mx.google.com with ESMTPS id t59sm15457875eeh.10.2012.01.20.11.53.30 (version=SSLv3 cipher=OTHER); Fri, 20 Jan 2012 11:53:30 -0800 (PST) Message-ID: <4F19C637.6040800@gmail.com> Date: Fri, 20 Jan 2012 20:53:27 +0100 From: Stefano Lattarini MIME-Version: 1.0 To: 10555@debbugs.gnu.org Subject: Re: bug#10555: automake: wrong use of F77FLAGS instead of FFLAGS? References: <4F181E61.5060807@gmail.com> In-Reply-To: <4F181E61.5060807@gmail.com> Content-Type: multipart/mixed; boundary="------------020308010300040608050407" X-Spam-Score: -2.6 (--) X-Debbugs-Envelope-To: 10555 Cc: "" X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: debbugs-submit-bounces@debbugs.gnu.org Errors-To: debbugs-submit-bounces@debbugs.gnu.org X-Spam-Score: -2.6 (--) This is a multi-part message in MIME format. --------------020308010300040608050407 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit On 01/19/2012 02:45 PM, Stefano Lattarini wrote: > > [SNIP] > > So, to all autoconfers: do you happen to know any reason for which Automake > should use F77FLAGS? If not, I'll assume that is due to a typo or clerical > mistake, and fix it (in 48 hours or so). > The attached patch should take care of this. I'll push it tomorrow if there is no objection. Thanks, Stefano --------------020308010300040608050407 Content-Type: text/x-diff; name="0001-fixlet-flags-for-Fortran77-compiler-are-in-FFLAGS-no.patch" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename*0="0001-fixlet-flags-for-Fortran77-compiler-are-in-FFLAGS-no.pa"; filename*1="tch" >From c515aac8817b20a8f0a6ed8969f1f1d0b37c3802 Mon Sep 17 00:00:00 2001 Message-Id: From: Stefano Lattarini Date: Fri, 20 Jan 2012 20:52:02 +0100 Subject: [PATCH] fixlet: flags for Fortran77 compiler are in FFLAGS, not F77FLAGS This change fixes automake bug#10555. * lib/Automake/Variable.pm (%_ac_macro_for_var): The code generated by AC_PROG_F77 uses FFLAGS, not F77FLAGS, as the variable where to look for switches for the Fortran 77 compiler: adjust accordingly. --- lib/Automake/Variable.pm | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/lib/Automake/Variable.pm b/lib/Automake/Variable.pm index 686847d..8f712bd 100644 --- a/lib/Automake/Variable.pm +++ b/lib/Automake/Variable.pm @@ -181,7 +181,7 @@ my %_ac_macro_for_var = CXX => 'AC_PROG_CXX', CXXFLAGS => 'AC_PROG_CXX', F77 => 'AC_PROG_F77', - F77FLAGS => 'AC_PROG_F77', + FFLAGS => 'AC_PROG_F77', FC => 'AC_PROG_FC', FCFLAGS => 'AC_PROG_FC', OBJC => 'AC_PROG_OBJC', -- 1.7.7.3 --------------020308010300040608050407-- From debbugs-submit-bounces@debbugs.gnu.org Fri Jan 20 15:09:20 2012 Received: (at 10555) by debbugs.gnu.org; 20 Jan 2012 20:09:20 +0000 Received: from localhost ([127.0.0.1]:36988 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1RoKm0-0001n9-7q for submit@debbugs.gnu.org; Fri, 20 Jan 2012 15:09:20 -0500 Received: from mail.lysator.liu.se ([130.236.254.3]:34079) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1RoKlx-0001my-R0 for 10555@debbugs.gnu.org; Fri, 20 Jan 2012 15:09:19 -0500 Received: from mail.lysator.liu.se (localhost [127.0.0.1]) by mail.lysator.liu.se (Postfix) with ESMTP id 1900F40012; Fri, 20 Jan 2012 21:07:57 +0100 (CET) Received: from [192.168.0.150] (h57n3fls301o1095.telia.com [81.230.178.57]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.lysator.liu.se (Postfix) with ESMTPSA id C85774000C; Fri, 20 Jan 2012 21:07:56 +0100 (CET) Message-ID: <4F19C9A4.2060000@lysator.liu.se> Date: Fri, 20 Jan 2012 21:08:04 +0100 From: Peter Rosin User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:8.0) Gecko/20111105 Thunderbird/8.0 MIME-Version: 1.0 To: Stefano Lattarini Subject: Re: bug#10555: automake: wrong use of F77FLAGS instead of FFLAGS? References: <4F181E61.5060807@gmail.com> <4F19C637.6040800@gmail.com> In-Reply-To: <4F19C637.6040800@gmail.com> Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Virus-Scanned: ClamAV using ClamSMTP X-Spam-Score: -1.9 (-) X-Debbugs-Envelope-To: 10555 Cc: 10555@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: debbugs-submit-bounces@debbugs.gnu.org Errors-To: debbugs-submit-bounces@debbugs.gnu.org X-Spam-Score: -1.9 (-) Stefano Lattarini skrev 2012-01-20 20:53: > On 01/19/2012 02:45 PM, Stefano Lattarini wrote: >> >> [SNIP] >> >> So, to all autoconfers: do you happen to know any reason for which Automake >> should use F77FLAGS? If not, I'll assume that is due to a typo or clerical >> mistake, and fix it (in 48 hours or so). >> > The attached patch should take care of this. I'll push it tomorrow if there > is no objection. Isn't this worthy of a NEWS entry? Or does it not affect end users at all? Cheers, Peter From debbugs-submit-bounces@debbugs.gnu.org Sat Jan 21 04:26:34 2012 Received: (at 10555) by debbugs.gnu.org; 21 Jan 2012 09:26:34 +0000 Received: from localhost ([127.0.0.1]:38146 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1RoXDR-0003a5-IB for submit@debbugs.gnu.org; Sat, 21 Jan 2012 04:26:34 -0500 Received: from mail-ee0-f44.google.com ([74.125.83.44]:64967) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1RoXDK-0003Zo-SJ for 10555@debbugs.gnu.org; Sat, 21 Jan 2012 04:26:28 -0500 Received: by eekc1 with SMTP id c1so679363eek.3 for <10555@debbugs.gnu.org>; Sat, 21 Jan 2012 01:26:15 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=message-id:date:from:mime-version:to:cc:subject:references :in-reply-to:content-type; bh=hsVkQV+dAg2nJPjVP42R+J2Pw+GtHCF9ypnwA8tjTg4=; b=oo1c21Syrv2KjC06GvmR12V1/q8wVGM2AM2Whht/gbybOUpZmZfKj8TJy+VDhkklvC 1oJdcen/ltaBGUk3ds2lJE/3KFhh2JGhjuyv/M6dfPVH/0tv2puNsRjgvIRM3zwciox8 AlGP1VYqdWFi0SM+SchNGE8QCHgjdpym4zXL0= Received: by 10.14.17.89 with SMTP id i65mr426162eei.93.1327137975055; Sat, 21 Jan 2012 01:26:15 -0800 (PST) Received: from [87.21.62.94] (host94-62-dynamic.21-87-r.retail.telecomitalia.it. [87.21.62.94]) by mx.google.com with ESMTPS id s16sm23061374eef.2.2012.01.21.01.26.13 (version=SSLv3 cipher=OTHER); Sat, 21 Jan 2012 01:26:14 -0800 (PST) Message-ID: <4F1A84B4.4070407@gmail.com> Date: Sat, 21 Jan 2012 10:26:12 +0100 From: Stefano Lattarini MIME-Version: 1.0 To: Peter Rosin Subject: Re: bug#10555: automake: wrong use of F77FLAGS instead of FFLAGS? References: <4F181E61.5060807@gmail.com> <4F19C637.6040800@gmail.com> <4F19C9A4.2060000@lysator.liu.se> In-Reply-To: <4F19C9A4.2060000@lysator.liu.se> Content-Type: multipart/mixed; boundary="------------080406040007010902050508" X-Spam-Score: -2.6 (--) X-Debbugs-Envelope-To: 10555 Cc: 10555@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: debbugs-submit-bounces@debbugs.gnu.org Errors-To: debbugs-submit-bounces@debbugs.gnu.org X-Spam-Score: -2.6 (--) This is a multi-part message in MIME format. --------------080406040007010902050508 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit On 01/20/2012 09:08 PM, Peter Rosin wrote: > Stefano Lattarini skrev 2012-01-20 20:53: >> On 01/19/2012 02:45 PM, Stefano Lattarini wrote: >>> >>> [SNIP] >>> >>> So, to all autoconfers: do you happen to know any reason for which Automake >>> should use F77FLAGS? If not, I'll assume that is due to a typo or clerical >>> mistake, and fix it (in 48 hours or so). >>> >> The attached patch should take care of this. I'll push it tomorrow if there >> is no objection. > > Isn't this worthy of a NEWS entry? Or does it not affect end users at all? > The bug only affected the "hints" printed by automake in some error messages (e.g., "The usual way to define `F77' is to add AC_PROG_F77 to configure.ac"), and I believe that is so minor not to require a NEWS entry. Anyway, I see this fact wasn't apparent from my commit message, so I've amended it to be clearer. Attached is the patch I've pushed. If you are still convinced it deserves a NEWS entry anyway, feel free to write one; I won't object. Thanks, Stefano --------------080406040007010902050508 Content-Type: text/x-diff; name="0001-fixlet-flags-for-Fortran77-compiler-are-in-FFLAGS-no.patch" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename*0="0001-fixlet-flags-for-Fortran77-compiler-are-in-FFLAGS-no.pa"; filename*1="tch" >From 84fbf466f32d0e47291a91d620f7d4831bba34fe Mon Sep 17 00:00:00 2001 Message-Id: <84fbf466f32d0e47291a91d620f7d4831bba34fe.1327137936.git.stefano.lattarini@gmail.com> From: Stefano Lattarini Date: Fri, 20 Jan 2012 20:52:02 +0100 Subject: [PATCH] fixlet: flags for Fortran77 compiler are in FFLAGS, not F77FLAGS This change fixes automake bug#10555. Note that the bug was a minor one, since it didn't affect the compilation rules generated by automake, but only only the "hints" printed by automake in some error messages (e.g., "The usual way to define `FFLAGS' is to add AC_PROG_F77 to configure.ac"). * lib/Automake/Variable.pm (%_ac_macro_for_var): The code generated by AC_PROG_F77 uses FFLAGS, not F77FLAGS, as the variable where to look for switches for the Fortran 77 compiler: adjust accordingly. --- lib/Automake/Variable.pm | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/lib/Automake/Variable.pm b/lib/Automake/Variable.pm index 686847d..8f712bd 100644 --- a/lib/Automake/Variable.pm +++ b/lib/Automake/Variable.pm @@ -181,7 +181,7 @@ my %_ac_macro_for_var = CXX => 'AC_PROG_CXX', CXXFLAGS => 'AC_PROG_CXX', F77 => 'AC_PROG_F77', - F77FLAGS => 'AC_PROG_F77', + FFLAGS => 'AC_PROG_F77', FC => 'AC_PROG_FC', FCFLAGS => 'AC_PROG_FC', OBJC => 'AC_PROG_OBJC', -- 1.7.7.3 --------------080406040007010902050508-- From debbugs-submit-bounces@debbugs.gnu.org Sun Jan 22 14:00:57 2012 Received: (at 10555) by debbugs.gnu.org; 22 Jan 2012 19:00:57 +0000 Received: from localhost ([127.0.0.1]:40208 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1Rp2eu-0002xT-Fy for submit@debbugs.gnu.org; Sun, 22 Jan 2012 14:00:56 -0500 Received: from mail.lysator.liu.se ([130.236.254.3]:51888) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1Rp2eq-0002xK-EE for 10555@debbugs.gnu.org; Sun, 22 Jan 2012 14:00:54 -0500 Received: from mail.lysator.liu.se (localhost [127.0.0.1]) by mail.lysator.liu.se (Postfix) with ESMTP id 2A98140008; Sun, 22 Jan 2012 20:00:40 +0100 (CET) Received: from [192.168.0.150] (h57n3fls301o1095.telia.com [81.230.178.57]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.lysator.liu.se (Postfix) with ESMTPSA id B9D5D40003; Sun, 22 Jan 2012 20:00:39 +0100 (CET) Message-ID: <4F1C5CD7.4010901@lysator.liu.se> Date: Sun, 22 Jan 2012 20:00:39 +0100 From: Peter Rosin User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:8.0) Gecko/20111105 Thunderbird/8.0 MIME-Version: 1.0 To: Stefano Lattarini Subject: Re: bug#10555: automake: wrong use of F77FLAGS instead of FFLAGS? References: <4F181E61.5060807@gmail.com> <4F19C637.6040800@gmail.com> <4F19C9A4.2060000@lysator.liu.se> <4F1A84B4.4070407@gmail.com> In-Reply-To: <4F1A84B4.4070407@gmail.com> Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Virus-Scanned: ClamAV using ClamSMTP X-Spam-Score: -1.9 (-) X-Debbugs-Envelope-To: 10555 Cc: 10555@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: debbugs-submit-bounces@debbugs.gnu.org Errors-To: debbugs-submit-bounces@debbugs.gnu.org X-Spam-Score: -1.9 (-) Stefano Lattarini skrev 2012-01-21 10:26: > On 01/20/2012 09:08 PM, Peter Rosin wrote: >> Stefano Lattarini skrev 2012-01-20 20:53: >>> On 01/19/2012 02:45 PM, Stefano Lattarini wrote: >>>> >>>> [SNIP] >>>> >>>> So, to all autoconfers: do you happen to know any reason for which Automake >>>> should use F77FLAGS? If not, I'll assume that is due to a typo or clerical >>>> mistake, and fix it (in 48 hours or so). >>>> >>> The attached patch should take care of this. I'll push it tomorrow if there >>> is no objection. >> >> Isn't this worthy of a NEWS entry? Or does it not affect end users at all? >> > The bug only affected the "hints" printed by automake in some error messages > (e.g., "The usual way to define `F77' is to add AC_PROG_F77 to configure.ac"), > and I believe that is so minor not to require a NEWS entry. Anyway, I see > this fact wasn't apparent from my commit message, so I've amended it to be > clearer. Attached is the patch I've pushed. If you are still convinced it > deserves a NEWS entry anyway, feel free to write one; I won't object. Ok, in that case a NEWS entry is not needed. I should have mentioned that I only thought it was needed in case you had forgotten about it... Cheers, Peter From debbugs-submit-bounces@debbugs.gnu.org Thu Feb 02 04:02:31 2012 Received: (at 10555) by debbugs.gnu.org; 2 Feb 2012 09:02:31 +0000 Received: from localhost ([127.0.0.1]:49938 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1RssYp-0004V4-6z for submit@debbugs.gnu.org; Thu, 02 Feb 2012 04:02:31 -0500 Received: from mail-bk0-f44.google.com ([209.85.214.44]:62086) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1RssYm-0004Uk-DN; Thu, 02 Feb 2012 04:02:29 -0500 Received: by bkbzt4 with SMTP id zt4so1739530bkb.3 for ; Thu, 02 Feb 2012 01:01:56 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=message-id:date:from:mime-version:to:subject:content-type :content-transfer-encoding; bh=LSzy40h3C7Kjd2Zf+/WvaMp0fr5i0t+ES0bgPhj1n8k=; b=wS77zHKfuZTbA6gAmK9OOWCgmOm15kFeXjvWNWUhsyY5Y6dRLzrJVIUOqNdNoJcdXw Q6SEJXrGTO0AGL5K3RoJ+Y0VnMBm6TZR6xrIE5EyyADME9m48CVcdKZhzLGTj8p/phmO PbeTsn96z6spXz02Rc5yp3PLPRVK/XmUlIcxE= Received: by 10.204.145.210 with SMTP id e18mr913224bkv.61.1328173316520; Thu, 02 Feb 2012 01:01:56 -0800 (PST) Received: from [82.56.37.130] (host130-37-dynamic.56-82-r.retail.telecomitalia.it. [82.56.37.130]) by mx.google.com with ESMTPS id bw9sm4976949bkb.8.2012.02.02.01.01.54 (version=SSLv3 cipher=OTHER); Thu, 02 Feb 2012 01:01:55 -0800 (PST) Message-ID: <4F2A50FC.1010603@gmail.com> Date: Thu, 02 Feb 2012 10:01:48 +0100 From: Stefano Lattarini MIME-Version: 1.0 To: 10555@debbugs.gnu.org Subject: close bug Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Spam-Score: -2.6 (--) X-Debbugs-Envelope-To: 10555 X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: debbugs-submit-bounces@debbugs.gnu.org Errors-To: debbugs-submit-bounces@debbugs.gnu.org X-Spam-Score: -2.6 (--) tags 10555 patch close 10555 thanks This bug has been fixed by commit 'v1.11-664-g84fbf46', "fixlet: flags for Fortran77 compiler are in FFLAGS, not F77FLAGS". I'm thus closing this report. Regards, Stefano From unknown Sat Aug 16 18:32:54 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Thu, 01 Mar 2012 12:24:03 +0000 User-Agent: Fakemail v42.6.9 # This is a fake control message. # # The action: # bug archived. thanks # This fakemail brought to you by your local debbugs # administrator