Discussions of the Parallel Programming book
 help / color / mirror / Atom feed
From: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
To: Akira Yokosawa <akiyks@gmail.com>
Cc: perfbook@vger.kernel.org
Subject: Re: [PATCH v2] autodate.sh: Use printf command instead of echo
Date: Sun, 22 Jan 2017 16:58:01 -0800	[thread overview]
Message-ID: <20170123005800.GA28085@linux.vnet.ibm.com> (raw)
In-Reply-To: <966495e1-22c2-9573-e49c-c08663b3437f@gmail.com>

On Sat, Jan 21, 2017 at 12:01:59AM +0900, Akira Yokosawa wrote:
> On 2017/01/19 20:16, Akira Yokosawa wrote:
> >>From b981648ff25387ecea68b55350671c55ad894884 Mon Sep 17 00:00:00 2001
> > From: Akira Yokosawa <akiyks@gmail.com>
> > Date: Tue, 17 Jan 2017 20:04:54 +0900
> > Subject: [PATCH v2] autodate.sh: Use printf command instead of echo
> > 
> > Using "echo" command to generate output containing "\" characters
> > caused a build error depending on the variant of "sh".
> > For portability, we should use "printf" via "env" command.
> > 
> > Fixes: 878bf8160a5c ("Make date of git commit be reflected automatically")
> > Reported-by: Trevor Woerner <twoerner@gmail.com>
> > Tested-by: Trevor Woerner <twoerner@gmail.com>
> > Signed-off-by: Akira Yokosawa <akiyks@gmail.com>
> > ---
> > v2: Changes in commit log
> >       o Tested-by from Trevor
> >       o Title of fixed commit
> 
> Well, seems like I should have put the "Tested-by:" from Trevor
> below my "Signed-off-by:" to respect the chain of event.
> If it is not too late, can you reorder them for me?

You got lucky, internet-access troubles.  ;-)

Queued and pushed with the Tested-by and Signed-off-by reversed.

							Thanx, Paul

>                                       Thanks, Akira                     
> 
> > 
> >  utilities/autodate.sh | 6 +++---
> >  1 file changed, 3 insertions(+), 3 deletions(-)
> > 
> > diff --git a/utilities/autodate.sh b/utilities/autodate.sh
> > index 6df8f99..a56bc70 100644
> > --- a/utilities/autodate.sh
> > +++ b/utilities/autodate.sh
> > @@ -35,7 +35,7 @@ else
> >  	gitstatus=`git status --porcelain | wc -l`
> >  	if [ $gitstatus != "0" ]
> >  	then
> > -		modified=" (m)"
> > +		modified="(m)"
> >  	else
> >  		modified=""
> >  	fi
> > @@ -44,5 +44,5 @@ month=`date --date="$date_str" +%B`
> >  year=`date --date="$date_str" +%Y`
> >  day=`date --date="$date_str" +%e`
> >  
> > -echo "\\date{$month $day, $year$modified}"
> > -echo "\\\newcommand{\\\commityear}{$year}"
> > +env printf "\\date{%s %s, %s %s}\n" $month $day $year $modified
> > +env printf "\\\newcommand{\\\commityear}{%s}\n" $year
> > 
> 


  reply	other threads:[~2017-01-23  0:58 UTC|newest]

Thread overview: 9+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-01-16 23:41 [PATCH] utilities/autodate.sh: too many \s Trevor Woerner
2017-01-17 11:30 ` Akira Yokosawa
2017-01-17 11:33   ` [PATCH] autodate.sh: Use printf instead of echo Akira Yokosawa
2017-01-19  2:33     ` Trevor Woerner
2017-01-19 11:16       ` [PATCH v2] autodate.sh: Use printf command " Akira Yokosawa
2017-01-20 15:01         ` Akira Yokosawa
2017-01-23  0:58           ` Paul E. McKenney [this message]
2017-01-18 17:00   ` [PATCH] utilities/autodate.sh: too many \s Trevor Woerner
2017-01-18 22:15     ` Akira Yokosawa

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20170123005800.GA28085@linux.vnet.ibm.com \
    --to=paulmck@linux.vnet.ibm.com \
    --cc=akiyks@gmail.com \
    --cc=perfbook@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox