From 90432c32f0dcbcf70c6768eb3bbbf7dbbcbf747a Mon Sep 17 00:00:00 2001 From: Godzil Date: Mon, 16 Apr 2012 23:42:24 +0200 Subject: [PATCH] Same as bootloader strftime is not compatible with non gnu awk --- src/conf2h.awk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/conf2h.awk b/src/conf2h.awk index 3818f89..fa08b92 100644 --- a/src/conf2h.awk +++ b/src/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" }