From 7e40e7d91dd2d952aa8f467b284c61d9063c4fae Mon Sep 17 00:00:00 2001 From: Jan Nieuwenhuizen Date: Mon, 7 Feb 2005 23:26:20 +0000 Subject: [PATCH] Use %0.f iso %d to quiet gawk < 3.1.4 and mawk in fontforge (date) test. --- ChangeLog | 5 +++++ stepmake/aclocal.m4 | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 6679e16843..b0b0412e2c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2005-02-08 Jan Nieuwenhuizen + + * stepmake/aclocal.m4: Use %0.f iso %d to quiet gawk < 3.1.4 and + mawk in fontforge (date) test. + 2005-02-07 Han-Wen Nienhuys * scm/font.scm (make-century-schoolbook-tree): add NCS as diff --git a/stepmake/aclocal.m4 b/stepmake/aclocal.m4 index d8cf86f060..d7c111f794 100644 --- a/stepmake/aclocal.m4 +++ b/stepmake/aclocal.m4 @@ -54,7 +54,7 @@ AC_DEFUN(STEPMAKE_NUMERIC_VERSION, [ if ([$]3) {three = [$]3} else {three = 0} } - {printf "%d\n", [$]1*1000000 + [$]2*1000 + three}' + {printf "%.0f\n", [$]1*1000000 + [$]2*1000 + three}' ]) -- 2.39.5