automake-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Automake-commit] [SCM] GNU Automake branch, maint, updated. v1.11-664-g


From: Stefano Lattarini
Subject: [Automake-commit] [SCM] GNU Automake branch, maint, updated. v1.11-664-g84fbf46
Date: Sat, 21 Jan 2012 09:28:39 +0000

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GNU Automake".

http://git.sv.gnu.org/gitweb/?p=automake.git;a=commitdiff;h=84fbf466f32d0e47291a91d620f7d4831bba34fe

The branch, maint has been updated
       via  84fbf466f32d0e47291a91d620f7d4831bba34fe (commit)
      from  be0d69f0467763fca65d3acd1bfe0e03ff987206 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit 84fbf466f32d0e47291a91d620f7d4831bba34fe
Author: Stefano Lattarini <address@hidden>
Date:   Fri Jan 20 20:52:02 2012 +0100

    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.

-----------------------------------------------------------------------

Summary of changes:
 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',


hooks/post-receive
-- 
GNU Automake



reply via email to

[Prev in Thread] Current Thread [Next in Thread]