]> git.ipfire.org Git - thirdparty/automake.git/commitdiff
automake: algol68: also rename [AM_]A68FLAGS to [AM_]A68CFLAGS.
authorKarl Berry <karl@freefriends.org>
Mon, 28 Apr 2025 22:42:52 +0000 (15:42 -0700)
committerKarl Berry <karl@freefriends.org>
Mon, 28 Apr 2025 22:42:52 +0000 (15:42 -0700)
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.

bin/automake.in
configure.ac
doc/automake.texi
lib/Automake/Variable.pm

index dd6fb183baf8c110675e1b08744adcba1d390d57..c0b2aea4cdfb2a4789689f9ac9efa95c8272ed4d 100644 (file)
@@ -1026,9 +1026,9 @@ register_language ('name' => 'a68',
                    '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',
index 16cf104b206a7aafae0e1dc08762018dab50a435..0cfa093e817a4f97914aa4eee95901a31d589b43 100644 (file)
@@ -567,7 +567,7 @@ fi
 
 # 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])], [],
index a94f72d743e544021729579871d7c040bb732bda..bdd615e2d09faa34ce38829ce2d7d9a1dd3e1210 100644 (file)
@@ -7200,11 +7200,11 @@ seen:
 @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
index bb1d4c983c4552718e6f1db94e475bb0dff6ef2c..2222b98e76961b0dcfeaaf527438d1522090c9ee 100644 (file)
@@ -181,7 +181,7 @@ my %_ac_macro_for_var =
    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',