[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[gawk-diffs] [SCM] gawk branch, feature/improve-tests, updated. gawk-4.1
From: |
Eli Zaretskii |
Subject: |
[gawk-diffs] [SCM] gawk branch, feature/improve-tests, updated. gawk-4.1.0-3108-gac9ba2e |
Date: |
Sat, 5 May 2018 04:17:25 -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, feature/improve-tests has been updated
via ac9ba2e1dd7f059fb2c6d5f103fd26b492006727 (commit)
from b39340b3f8a553a4836aa27e14b4918586806556 (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=ac9ba2e1dd7f059fb2c6d5f103fd26b492006727
commit ac9ba2e1dd7f059fb2c6d5f103fd26b492006727
Author: Eli Zaretskii <address@hidden>
Date: Sat May 5 11:16:48 2018 +0300
Fix the -F/ switch in pc/Makefile.tst.
diff --git a/pc/ChangeLog b/pc/ChangeLog
index 59e8d81..e19a155 100644
--- a/pc/ChangeLog
+++ b/pc/ChangeLog
@@ -1,3 +1,8 @@
+2018-05-05 Eli Zaretskii <address@hidden>
+
+ * GenMakefileTst.awk (substitutions): Replace the literal slash in
+ -F/ with $(SLASH).
+
2018-05-03 Arnold D. Robbins <address@hidden>
* GenMakefileTst.awk: Use only fully portable constructs so that
diff --git a/pc/GenMakefileTst.awk b/pc/GenMakefileTst.awk
index baa69b8..0761a3b 100644
--- a/pc/GenMakefileTst.awk
+++ b/pc/GenMakefileTst.awk
@@ -93,6 +93,9 @@ function substitutions(test, string)
# command for `ls'
gsub(/@ls/, "@$(LS)", string)
+ # MSYS needs "/" to be doubled
+ gsub(/-F\//, "-F$(SLASH)", string)
+
if (string ~ /\$\(CMP\)/ && test in testoutcmp) {
gsub(/\$\(CMP\)/, "$(TESTOUTCMP)", string)
delete testoutcmp[test]
-----------------------------------------------------------------------
Summary of changes:
pc/ChangeLog | 5 +++++
pc/GenMakefileTst.awk | 3 +++
2 files changed, 8 insertions(+)
hooks/post-receive
--
gawk
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [gawk-diffs] [SCM] gawk branch, feature/improve-tests, updated. gawk-4.1.0-3108-gac9ba2e,
Eli Zaretskii <=