From: Michael Orlitzky Date: Fri, 3 Jul 2020 12:50:12 +0000 (-0400) Subject: compilation.sh: export FFLAGS, too. X-Git-Url: http://gitweb.michael.orlitzky.com/?p=bash.d.git;a=commitdiff_plain;h=cc72d40e8292040c148e26ff9c7785770e7bab0d compilation.sh: export FFLAGS, too. FFLAGS is the POSIX-make standard name for FORTRAN compiler flags. It may be needed for build systems that don't use autotools but are still make-based. --- diff --git a/compilation.sh b/compilation.sh index 7613425..3a14667 100644 --- a/compilation.sh +++ b/compilation.sh @@ -35,6 +35,7 @@ fi # subsequent commands. export CFLAGS export CXXFLAGS +export FFLAGS export FCFLAGS export LDFLAGS