From https://bugs.gnu.org/78033 (automake-patches).
* bin/automake.in (a68): change link and compile values.
* lib/Automake/Variable.pm: likewise rename.
* configure.ac: likewise rename.
* doc/automake.texi: likewise rename.
'Name' => 'Algol 68',
'config_vars' => ['A68C'],
'linker' => 'A68LINK',
- 'link' => '$(A68LD) $(AM_A68FLAGS) $(A68FLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@',
+ 'link' => '$(A68LD) $(AM_A68CFLAGS) $(A68CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@',
'flags' => ['A68FLAGS'],
- 'compile' => '$(A68C) $(AM_A68FLAGS) $(A68FLAGS)',
+ 'compile' => '$(A68C) $(AM_A68CFLAGS) $(A68CFLAGS)',
'ccer' => 'A68C',
'compiler' => 'A68COMPILE',
'compile_flag' => '-c',
# GNU Algol 68 compiler.
AC_ARG_VAR([GNU_A68], [GNU Algol 68 compiler])
-AC_ARG_VAR([GNU_A68FLAGS], [GNU Algol 68 compiler flags])
+AC_ARG_VAR([GNU_A68CFLAGS], [GNU Algol 68 compiler flags])
AC_CHECK_TOOLS([GNU_A68], [ga68], [false])
if test "$GNU_A68" != false; then
AS_IF([AM_RUN_LOG([$GNU_A68 --version && $GNU_A68 -v])], [],
@item A68C
The name of the Algol 68 compiler.
-@item A68FLAGS
+@item A68CFLAGS
Any flags to pass to the Algol 68 compiler.
-@item AM_A68FLAGS
-The maintainer's variant of @code{A68FLAGS}.
+@item AM_A68CFLAGS
+The maintainer's variant of @code{A68CFLAGS}.
@item A68COMPILE
The command used to compile an Algol 68 source file. The file name is
CXXFLAGS => 'AC_PROG_CXX',
F77 => 'AC_PROG_F77',
A68 => 'AC_PROG_A68C',
- A68FLAGS => 'AC_PROG_A68C',
+ A68CFLAGS => 'AC_PROG_A68C',
FFLAGS => 'AC_PROG_F77',
FC => 'AC_PROG_FC',
FCFLAGS => 'AC_PROG_FC',