aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorArnold D. Robbins <arnold@skeeve.com>2019-02-06 09:30:24 +0200
committerArnold D. Robbins <arnold@skeeve.com>2019-02-06 09:30:24 +0200
commit026717432f985355f7cf5b563ca1dfbb3cd40706 (patch)
treea7132ebce9fc4549beb4ad078981df41bf8d9282
parenta041086ddabc6f2de1a10544770314c8d739d85c (diff)
downloadegawk-026717432f985355f7cf5b563ca1dfbb3cd40706.tar.gz
egawk-026717432f985355f7cf5b563ca1dfbb3cd40706.tar.bz2
egawk-026717432f985355f7cf5b563ca1dfbb3cd40706.zip
Fix pc/GenMakefileTst.awk.
-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)