On Mon, Dec 23, 2019 at 08:47:45AM +0900, Akira Yokosawa wrote: > >From 7a420a8ee7df573f736c0c003ae2bc55f91bfbb0 Mon Sep 17 00:00:00 2001 > From: Akira Yokosawa <akiyks@xxxxxxxxx> > Date: Mon, 23 Dec 2019 07:35:59 +0900 > Subject: [PATCH] utilities/autodate: Fix build error by adding '\ ' in \date{} > > \date{} command does not accept an empty line. > > Signed-off-by: Akira Yokosawa <akiyks@xxxxxxxxx> Interesting. I am having to give eight backslashes in the script in order to get two of them in perfbook_flag.tex. You are getting four backslashes from the set of eight, I take it? I have the release ready, but am having difficulties getting the results uploaded to kernel.org. I have an email in to the helpdesk, so hopefully will get this set up, though holidays might results in a significant delay. I don't see this as an emergency, not yet, anyway. ;-) Thanx, Paul > --- > utilities/autodate.sh | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/utilities/autodate.sh b/utilities/autodate.sh > index 4e448976..96a25777 100644 > --- a/utilities/autodate.sh > +++ b/utilities/autodate.sh > @@ -47,7 +47,7 @@ year=`date --date="$date_str" +%Y` > day=`date --date="$date_str" +%e` > if test -n "$release" > then > - release="\\\\\\\\ Release $release" > + release="\\\\ \\ \\\\ Release $release" > fi > > # env printf "\\date{%s %s, %s %s %s}\n" $month $day $year $modified $release > -- > 2.24.1 > >