From a29e88e5f70a5ee5d0651f006611f9c82425ec06 Mon Sep 17 00:00:00 2001 From: Godzil Date: Mon, 16 Apr 2012 23:27:02 +0200 Subject: [PATCH] Remove occurence of strftime that is not compatible with non gnu awk. --- src/bootldr/conf2h.awk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bootldr/conf2h.awk b/src/bootldr/conf2h.awk index 3818f89..4315ad5 100644 --- a/src/bootldr/conf2h.awk +++ b/src/bootldr/conf2h.awk @@ -4,7 +4,7 @@ # file to a C header. No copyright claimed. BEGIN { - print "// autoconf.h generated from " ARGV[1] " at " strftime() "\n" \ + print "// autoconf.h generated from " ARGV[1] " at TODAY \n" \ "#ifndef AUTOCONF_H\n" \ "#define AUTOCONF_H" }