gawk-diffs
[Top][All Lists]
Advanced

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

[SCM] gawk branch, gawk-5.3-stable, updated. gawk-4.1.0-5538-gf949fd31


From: Arnold Robbins
Subject: [SCM] gawk branch, gawk-5.3-stable, updated. gawk-4.1.0-5538-gf949fd31
Date: Tue, 24 Sep 2024 13:13:27 -0400 (EDT)

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 "gawk".

The branch, gawk-5.3-stable has been updated
       via  f949fd3199f0e16f36fb48811102a42a45f3ef02 (commit)
      from  a3ab843bbe118e89e083b99b346fe1ce0a1e3ed4 (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 -----------------------------------------------------------------
http://git.sv.gnu.org/cgit/gawk.git/commit/?id=f949fd3199f0e16f36fb48811102a42a45f3ef02

commit f949fd3199f0e16f36fb48811102a42a45f3ef02
Author: Arnold D. Robbins <arnold@skeeve.com>
Date:   Tue Sep 24 20:12:57 2024 +0300

    Small cross-compilation fix.

diff --git a/awklib/ChangeLog b/awklib/ChangeLog
index 3fd607b5..3625d9a3 100644
--- a/awklib/ChangeLog
+++ b/awklib/ChangeLog
@@ -1,3 +1,8 @@
+2024-09-24         Hendrik Donner        <hd@os-cillation.de>
+
+       * Makefile.am: Make sure when cross compiling the awk detected by
+       configure is used.
+
 2024-09-17         Arnold D. Robbins     <arnold@skeeve.com>
 
        * 5.3.1: Release tar made.
diff --git a/awklib/Makefile.am b/awklib/Makefile.am
index df881805..f6b15a20 100644
--- a/awklib/Makefile.am
+++ b/awklib/Makefile.am
@@ -29,7 +29,7 @@ EXTRA_DIST = ChangeLog ChangeLog.0 ChangeLog.1 \
 # So we fix the locale to some sensible value.
 
 if TEST_CROSS_COMPILE
-AWKPROG = LC_ALL=C LANG=C awk$(EXEEXT)
+AWKPROG = LC_ALL=C LANG=C $(AWK)
 else
 AWKPROG = LC_ALL=C LANG=C "$(abs_top_builddir)/gawk$(EXEEXT)"
 endif
diff --git a/awklib/Makefile.in b/awklib/Makefile.in
index 28847cac..e00adf1f 100644
--- a/awklib/Makefile.in
+++ b/awklib/Makefile.in
@@ -336,7 +336,7 @@ EXTRA_DIST = ChangeLog ChangeLog.0 ChangeLog.1 \
 @TEST_CROSS_COMPILE_FALSE@AWKPROG = LC_ALL=C LANG=C 
"$(abs_top_builddir)/gawk$(EXEEXT)"
 # With some locales, the script extract.awk fails.
 # So we fix the locale to some sensible value.
-@TEST_CROSS_COMPILE_TRUE@AWKPROG = LC_ALL=C LANG=C awk$(EXEEXT)
+@TEST_CROSS_COMPILE_TRUE@AWKPROG = LC_ALL=C LANG=C $(AWK)
 
 # Get config.h from the build directory and custom.h from the source directory.
 AM_CPPFLAGS = -I$(top_builddir) -I$(top_srcdir) -I$(top_srcdir)/support

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

Summary of changes:
 awklib/ChangeLog   | 5 +++++
 awklib/Makefile.am | 2 +-
 awklib/Makefile.in | 2 +-
 3 files changed, 7 insertions(+), 2 deletions(-)


hooks/post-receive
-- 
gawk



reply via email to

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