[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[gawk-diffs] [SCM] gawk branch, master, updated. gawk-4.1.0-3644-g026717
From: |
Arnold Robbins |
Subject: |
[gawk-diffs] [SCM] gawk branch, master, updated. gawk-4.1.0-3644-g0267174 |
Date: |
Wed, 6 Feb 2019 02:30:24 -0500 (EST) |
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, master has been updated
via 026717432f985355f7cf5b563ca1dfbb3cd40706 (commit)
from a041086ddabc6f2de1a10544770314c8d739d85c (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=026717432f985355f7cf5b563ca1dfbb3cd40706
commit 026717432f985355f7cf5b563ca1dfbb3cd40706
Author: Arnold D. Robbins <address@hidden>
Date: Wed Feb 6 09:30:24 2019 +0200
Fix pc/GenMakefileTst.awk.
diff --git a/pc/ChangeLog b/pc/ChangeLog
index 10f0101..dade24b 100644
--- a/pc/ChangeLog
+++ b/pc/ChangeLog
@@ -1,3 +1,7 @@
+2019-02-06 Arnold D. Robbins <address@hidden>
+
+ * GenMakefileTst.awk: Fix typo in call to gsub.
+
2010-02-03 Juan Manuel Guerrero <address@hidden>
* config.sed (_GNU_SOURCE) [__DJGPP__]: Define for DJGPP.
diff --git a/pc/GenMakefileTst.awk b/pc/GenMakefileTst.awk
index 7fce7eb..298b388 100644
--- a/pc/GenMakefileTst.awk
+++ b/pc/GenMakefileTst.awk
@@ -90,7 +90,7 @@ function substitutions(test, string)
# MSYS needs "/" to be doubled
gsub(/-F\//, "-F$(SLASH)", string)
- gsub(/address@hidden//, address@hidden(SLASH), string)
+ gsub(/address@hidden//, "address@hidden(SLASH)", string)
if (string ~ /\$\(CMP\)/ && test in testoutcmp) {
gsub(/\$\(CMP\)/, "$(TESTOUTCMP)", string)
-----------------------------------------------------------------------
Summary of changes:
pc/ChangeLog | 4 ++++
pc/GenMakefileTst.awk | 2 +-
2 files changed, 5 insertions(+), 1 deletion(-)
hooks/post-receive
--
gawk
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [gawk-diffs] [SCM] gawk branch, master, updated. gawk-4.1.0-3644-g0267174,
Arnold Robbins <=