git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* contrib/diff-highlight: stop hard-coding perl location
@ 2016-02-22  5:54 Peter Dave Hello
  2016-02-22  5:56 ` Eric Sunshine
  0 siblings, 1 reply; 4+ messages in thread
From: Peter Dave Hello @ 2016-02-22  5:54 UTC (permalink / raw)
  To: Git List; +Cc: Eric Sunshine

From: Peter Dave Hello <hsu@peterdavehello.org>

Use `#!/usr/bin/env perl` instead of `#!/usr/bin/perl`,
the util "env" can help located the "perl",
so that it can work on FreeBSD and other platforms.

Signed-off-by: Peter Dave Hello <hsu@peterdavehello.org>
---
 contrib/diff-highlight/diff-highlight | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/contrib/diff-highlight/diff-highlight
b/contrib/diff-highlight/diff-highlight
index ffefc31..b57b0fd 100755
--- a/contrib/diff-highlight/diff-highlight
+++ b/contrib/diff-highlight/diff-highlight
@@ -1,4 +1,4 @@
-#!/usr/bin/perl
+#!/usr/bin/env perl

 use 5.008;
 use warnings FATAL => 'all';

--

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: contrib/diff-highlight: stop hard-coding perl location
  2016-02-22  5:54 contrib/diff-highlight: stop hard-coding perl location Peter Dave Hello
@ 2016-02-22  5:56 ` Eric Sunshine
  2016-02-22  6:49   ` Peter Dave Hello
  0 siblings, 1 reply; 4+ messages in thread
From: Eric Sunshine @ 2016-02-22  5:56 UTC (permalink / raw)
  To: Peter Dave Hello; +Cc: Git List

On Mon, Feb 22, 2016 at 12:54 AM, Peter Dave Hello
<hsu@peterdavehello.org> wrote:
> From: Peter Dave Hello <hsu@peterdavehello.org>
>
> Use `#!/usr/bin/env perl` instead of `#!/usr/bin/perl`,
> the util "env" can help located the "perl",
> so that it can work on FreeBSD and other platforms.
>
> Signed-off-by: Peter Dave Hello <hsu@peterdavehello.org>

Better, thanks.

> ---
>  contrib/diff-highlight/diff-highlight | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/contrib/diff-highlight/diff-highlight
> b/contrib/diff-highlight/diff-highlight
> index ffefc31..b57b0fd 100755
> --- a/contrib/diff-highlight/diff-highlight
> +++ b/contrib/diff-highlight/diff-highlight
> @@ -1,4 +1,4 @@
> -#!/usr/bin/perl
> +#!/usr/bin/env perl
>
>  use 5.008;
>  use warnings FATAL => 'all';

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: contrib/diff-highlight: stop hard-coding perl location
  2016-02-22  5:56 ` Eric Sunshine
@ 2016-02-22  6:49   ` Peter Dave Hello
  2016-02-22  7:13     ` Eric Sunshine
  0 siblings, 1 reply; 4+ messages in thread
From: Peter Dave Hello @ 2016-02-22  6:49 UTC (permalink / raw)
  To: Eric Sunshine; +Cc: Git List

Hi Eric,

Thank you, is there anything I should do? Or I should just wait?

Best,
Peter

2016/2/22 下午1:56於 "Eric Sunshine" <sunshine@sunshineco.com>寫道:
>
> On Mon, Feb 22, 2016 at 12:54 AM, Peter Dave Hello
> <hsu@peterdavehello.org> wrote:
> > From: Peter Dave Hello <hsu@peterdavehello.org>
> >
> > Use `#!/usr/bin/env perl` instead of `#!/usr/bin/perl`,
> > the util "env" can help located the "perl",
> > so that it can work on FreeBSD and other platforms.
> >
> > Signed-off-by: Peter Dave Hello <hsu@peterdavehello.org>
>
> Better, thanks.
>
> > ---
> >  contrib/diff-highlight/diff-highlight | 2 +-
> >  1 file changed, 1 insertion(+), 1 deletion(-)
> >
> > diff --git a/contrib/diff-highlight/diff-highlight
> > b/contrib/diff-highlight/diff-highlight
> > index ffefc31..b57b0fd 100755
> > --- a/contrib/diff-highlight/diff-highlight
> > +++ b/contrib/diff-highlight/diff-highlight
> > @@ -1,4 +1,4 @@
> > -#!/usr/bin/perl
> > +#!/usr/bin/env perl
> >
> >  use 5.008;
> >  use warnings FATAL => 'all';

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: contrib/diff-highlight: stop hard-coding perl location
  2016-02-22  6:49   ` Peter Dave Hello
@ 2016-02-22  7:13     ` Eric Sunshine
  0 siblings, 0 replies; 4+ messages in thread
From: Eric Sunshine @ 2016-02-22  7:13 UTC (permalink / raw)
  To: Peter Dave Hello; +Cc: Git List

[please don't top-post on this list]

On Mon, Feb 22, 2016 at 1:49 AM, Peter Dave Hello
<hsu@peterdavehello.org> wrote:
> Thank you, is there anything I should do? Or I should just wait?

Best is to wait for other review comments, particularly from Junio.
Reviewers work at their own pace as time permits, so don't be
surprised if it takes days or a week or more. If you don't hear back
from Junio after a week or two, and if you don't see that he has
silently picked it up in his "pu" branch and don't see mention of it
in Junio's "What's cooking" email after that time, then it can be
helpful to send a reminder about the patch to the list.

> Best,
> Peter
>
> 2016/2/22 下午1:56於 "Eric Sunshine" <sunshine@sunshineco.com>寫道:
>>
>> On Mon, Feb 22, 2016 at 12:54 AM, Peter Dave Hello
>> <hsu@peterdavehello.org> wrote:
>> > From: Peter Dave Hello <hsu@peterdavehello.org>
>> >
>> > Use `#!/usr/bin/env perl` instead of `#!/usr/bin/perl`,
>> > the util "env" can help located the "perl",
>> > so that it can work on FreeBSD and other platforms.
>> >
>> > Signed-off-by: Peter Dave Hello <hsu@peterdavehello.org>
>>
>> Better, thanks.
>>
>> > ---
>> >  contrib/diff-highlight/diff-highlight | 2 +-
>> >  1 file changed, 1 insertion(+), 1 deletion(-)
>> >
>> > diff --git a/contrib/diff-highlight/diff-highlight
>> > b/contrib/diff-highlight/diff-highlight
>> > index ffefc31..b57b0fd 100755
>> > --- a/contrib/diff-highlight/diff-highlight
>> > +++ b/contrib/diff-highlight/diff-highlight
>> > @@ -1,4 +1,4 @@
>> > -#!/usr/bin/perl
>> > +#!/usr/bin/env perl
>> >
>> >  use 5.008;
>> >  use warnings FATAL => 'all';
>

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2016-02-22  7:13 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-02-22  5:54 contrib/diff-highlight: stop hard-coding perl location Peter Dave Hello
2016-02-22  5:56 ` Eric Sunshine
2016-02-22  6:49   ` Peter Dave Hello
2016-02-22  7:13     ` Eric Sunshine

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).