aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--pc/ChangeLog4
-rw-r--r--pc/GenMakefileTst.awk2
2 files changed, 5 insertions, 1 deletions
diff --git a/pc/ChangeLog b/pc/ChangeLog
index 10f0101c..dade24b4 100644
--- a/pc/ChangeLog
+++ b/pc/ChangeLog
@@ -1,3 +1,7 @@
+2019-02-06 Arnold D. Robbins <arnold@skeeve.com>
+
+ * GenMakefileTst.awk: Fix typo in call to gsub.
+
2010-02-03 Juan Manuel Guerrero <juan.guerrero@gmx.de>
* config.sed (_GNU_SOURCE) [__DJGPP__]: Define for DJGPP.
diff --git a/pc/GenMakefileTst.awk b/pc/GenMakefileTst.awk
index 7fce7eb3..298b3887 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(/=@\//, =@$(SLASH), string)
+ gsub(/=@\//, "=@$(SLASH)", string)
if (string ~ /\$\(CMP\)/ && test in testoutcmp) {
gsub(/\$\(CMP\)/, "$(TESTOUTCMP)", string)