From e91a371d4696b81adcb5e557e1cd5e5447c2b7fa Mon Sep 17 00:00:00 2001 From: Bob Friesenhahn Date: Mon, 18 Nov 2002 18:59:44 +0000 Subject: [PATCH] * tests/Makefile.am: Conditional assignment of FFLAGS = @FFLAGS@ does not appear to be necessary given that Automake makes this assignment by default. The condition is removed since Automake 1.7.1 complains about it. --- ChangeLog | 7 +++++++ tests/Makefile.am | 4 +--- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index 4876385b..ffbec28f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2002-11-18 Bob Friesenhahn + + * tests/Makefile.am: Conditional assignment of FFLAGS = @FFLAGS@ + does not appear to be necessary given that Automake makes this + assignment by default. The condition is removed since Automake + 1.7.1 complains about it. + 2002-11-18 Jakub Jelinek * libtool.m4: Support linking of 64-bit libraries on diff --git a/tests/Makefile.am b/tests/Makefile.am index 20761b3d..51a3a8c7 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -69,9 +69,7 @@ CFLAGS = @CFLAGS@ CPPFLAGS = @CPPFLAGS@ LDFLAGS = @LDFLAGS@ LIBS = @LIBS@ -if HAVE_F77 - FFLAGS = @FFLAGS@ -endif +FFLAGS = @FFLAGS@ # Be sure to reexport important environment variables. TESTS_ENVIRONMENT = MAKE="$(MAKE)" CC="$(CC)" CFLAGS="$(CFLAGS)" \