diff options
-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= |