summaryrefslogtreecommitdiff
path: root/test/strftime.awk
diff options
context:
space:
mode:
Diffstat (limited to 'test/strftime.awk')
-rw-r--r--test/strftime.awk6
1 files changed, 5 insertions, 1 deletions
diff --git a/test/strftime.awk b/test/strftime.awk
index a52957f0..73cdc698 100644
--- a/test/strftime.awk
+++ b/test/strftime.awk
@@ -8,7 +8,11 @@
BEGIN {
maxtries = 10
- datecmd = "date"
+ # On DOS/Windows, DATECMD is set by the Makefile to point to
+ # Unix-like 'date' command.
+ datecmd = DATECMD
+ if (datecmd == "")
+ datecmd = "date"
fmt = "%a %b %d %H:%M:%S %Z %Y"
# loop until before equals after, thereby protecting