diff options
author | Eli Zaretskii <eliz@gnu.org> | 2017-08-26 13:17:13 +0300 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2017-08-26 13:17:13 +0300 |
commit | c039e9d6479c2556199da3053b1a783ec1571a0d (patch) | |
tree | bf73a821db71a20c4d299faeb055fed19b67a650 | |
parent | c417632f68977ff7f714b0a4315b7fb271046959 (diff) | |
download | egawk-c039e9d6479c2556199da3053b1a783ec1571a0d.tar.gz egawk-c039e9d6479c2556199da3053b1a783ec1571a0d.tar.bz2 egawk-c039e9d6479c2556199da3053b1a783ec1571a0d.zip |
Fix pc/Makefile.tst.
-rw-r--r-- | pc/ChangeLog | 5 | ||||
-rw-r--r-- | pc/Makefile.tst | 9 |
2 files changed, 9 insertions, 5 deletions
diff --git a/pc/ChangeLog b/pc/ChangeLog index 455bd321..92c9e932 100644 --- a/pc/ChangeLog +++ b/pc/ChangeLog @@ -1,3 +1,8 @@ +2017-08-26 Eli Zaretskii <eliz@gnu.org> + + * Makefile.tst (SLASH, PATH_SEPARATOR, LS): Change the default + values to be less specific to my private setup. + 2017-08-23 Arnold D. Robbins <arnold@skeeve.com> * Makefile.am (testext): Fix spelling of testexttmp.txt. diff --git a/pc/Makefile.tst b/pc/Makefile.tst index 0bb073d0..2c8dd4a0 100644 --- a/pc/Makefile.tst +++ b/pc/Makefile.tst @@ -69,8 +69,7 @@ AWKPROG = ../gawk.exe # index numbers, because this is what the readdir test expects. # Otherwise, the readdir test will fail. (The MSYS ls.exe doesn't # report full index values.) -#LS = ls.exe -LS = /d/usr/bin/ls.exe +LS = ls.exe # Define PGAWK PGAWK = ../gawk.exe -p @@ -119,13 +118,13 @@ MKDIR = mkdir DATE = gdate # MS-DOS and OS/2 use ; as a PATH delimiter -PATH_SEPARATOR = : +PATH_SEPARATOR = ; # Argument to -F to produce -F/, should be // for MinGW, / otherwise, # because MSYS Bash converts a single slash to the equivalent Windows # directory. -#SLASH = / -SLASH = // +SLASH = / +#SLASH = // # Non-default GREP_OPTIONS might fail the badargs test export GREP_OPTIONS= |