From: janneke Date: Mon, 7 Feb 2005 23:26:20 +0000 (+0000) Subject: Use %0.f iso %d to quiet gawk < 3.1.4 and X-Git-Tag: release/2.5.23~565 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=ee198a80fcd28b0849dedefe9923e8e432e4e237;p=lilypond.git Use %0.f iso %d to quiet gawk < 3.1.4 and mawk in fontforge (date) test. --- 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}' ])