All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] gnu-config: removed absolute perl binary paths from gnu-configize.
@ 2011-02-05 17:26 Filip Zyzniewski
  2011-02-06  2:50 ` Khem Raj
  0 siblings, 1 reply; 4+ messages in thread
From: Filip Zyzniewski @ 2011-02-05 17:26 UTC (permalink / raw)
  To: openembedded-devel

Related bugzilla entry: http://bugs.openembedded.org/show_bug.cgi?id=5510
---
 recipes/gnu-config/files/gnu-configize.in |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/recipes/gnu-config/files/gnu-configize.in b/recipes/gnu-config/files/gnu-configize.in
index be8580c..adf9c0e 100755
--- a/recipes/gnu-config/files/gnu-configize.in
+++ b/recipes/gnu-config/files/gnu-configize.in
@@ -1,7 +1,7 @@
-#! /usr/bin/perl -w
+#! /usr/bin/env perl
 # -*- perl -*-
 
-eval 'case $# in 0) exec /usr/bin/perl -S "$0";; *) exec /usr/bin/perl -S "$0" "$@";; esac'
+eval 'case $# in 0) exec perl -S "$0";; *) exec perl -S "$0" "$@";; esac'
     if 0;
 
 # gnu-configize - install the GNU config.guess / config.sub in a directory tree
-- 
1.7.1




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

* Re: [PATCH] gnu-config: removed absolute perl binary paths from gnu-configize.
  2011-02-05 17:26 [PATCH] gnu-config: removed absolute perl binary paths from gnu-configize Filip Zyzniewski
@ 2011-02-06  2:50 ` Khem Raj
  2011-02-06  9:18   ` Martin Jansa
  0 siblings, 1 reply; 4+ messages in thread
From: Khem Raj @ 2011-02-06  2:50 UTC (permalink / raw)
  To: openembedded-devel

On Sat, Feb 5, 2011 at 9:26 AM, Filip Zyzniewski
<filip.zyzniewski@gmail.com> wrote:
> Related bugzilla entry: http://bugs.openembedded.org/show_bug.cgi?id=5510
> ---
>  recipes/gnu-config/files/gnu-configize.in |    4 ++--
>  1 files changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/recipes/gnu-config/files/gnu-configize.in b/recipes/gnu-config/files/gnu-configize.in
> index be8580c..adf9c0e 100755
> --- a/recipes/gnu-config/files/gnu-configize.in
> +++ b/recipes/gnu-config/files/gnu-configize.in
> @@ -1,7 +1,7 @@
> -#! /usr/bin/perl -w
> +#! /usr/bin/env perl
>  # -*- perl -*-
>
> -eval 'case $# in 0) exec /usr/bin/perl -S "$0";; *) exec /usr/bin/perl -S "$0" "$@";; esac'
> +eval 'case $# in 0) exec perl -S "$0";; *) exec perl -S "$0" "$@";; esac'
>     if 0;
>
>  # gnu-configize - install the GNU config.guess / config.sub in a directory tree
> --
> 1.7.1
>

Looks ok however signoff it properly and resend. See
http://openembedded.org/index.php/How_to_submit_a_patch_to_OpenEmbedded
>
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel
>



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

* Re: [PATCH] gnu-config: removed absolute perl binary paths from gnu-configize.
  2011-02-06  2:50 ` Khem Raj
@ 2011-02-06  9:18   ` Martin Jansa
  2011-02-06 15:44     ` Filip Zyzniewski
  0 siblings, 1 reply; 4+ messages in thread
From: Martin Jansa @ 2011-02-06  9:18 UTC (permalink / raw)
  To: openembedded-devel

[-- Attachment #1: Type: text/plain, Size: 1321 bytes --]

On Sat, Feb 05, 2011 at 06:50:16PM -0800, Khem Raj wrote:
> On Sat, Feb 5, 2011 at 9:26 AM, Filip Zyzniewski
> <filip.zyzniewski@gmail.com> wrote:
> > Related bugzilla entry: http://bugs.openembedded.org/show_bug.cgi?id=5510
> > ---
> >  recipes/gnu-config/files/gnu-configize.in |    4 ++--
> >  1 files changed, 2 insertions(+), 2 deletions(-)
> >
> > diff --git a/recipes/gnu-config/files/gnu-configize.in b/recipes/gnu-config/files/gnu-configize.in
> > index be8580c..adf9c0e 100755
> > --- a/recipes/gnu-config/files/gnu-configize.in
> > +++ b/recipes/gnu-config/files/gnu-configize.in
> > @@ -1,7 +1,7 @@
> > -#! /usr/bin/perl -w
> > +#! /usr/bin/env perl
> >  # -*- perl -*-
> >
> > -eval 'case $# in 0) exec /usr/bin/perl -S "$0";; *) exec /usr/bin/perl -S "$0" "$@";; esac'
> > +eval 'case $# in 0) exec perl -S "$0";; *) exec perl -S "$0" "$@";; esac'
> >     if 0;
> >
> >  # gnu-configize - install the GNU config.guess / config.sub in a directory tree
> > --
> > 1.7.1
> >
> 
> Looks ok however signoff it properly and resend. See
> http://openembedded.org/index.php/How_to_submit_a_patch_to_OpenEmbedded

And please rebase it on top of master, as first line was changed few
days ago, so this won't apply anymore.

-- 
Martin 'JaMa' Jansa     jabber: Martin.Jansa@gmail.com

[-- Attachment #2: Type: application/pgp-signature, Size: 205 bytes --]

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

* Re: [PATCH] gnu-config: removed absolute perl binary paths from gnu-configize.
  2011-02-06  9:18   ` Martin Jansa
@ 2011-02-06 15:44     ` Filip Zyzniewski
  0 siblings, 0 replies; 4+ messages in thread
From: Filip Zyzniewski @ 2011-02-06 15:44 UTC (permalink / raw)
  To: openembedded-devel

On 2/6/11, Martin Jansa <martin.jansa@gmail.com> wrote:

> And please rebase it on top of master, as first line was changed few
> days ago, so this won't apply anymore.

Well first line is fixed now and the others are if 0'ed anyway, so I
don't think there is a point in applying it anymore.

I've marked this patch in patchwork as superseded.

bye,
Filip



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

end of thread, other threads:[~2011-02-06 15:45 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-02-05 17:26 [PATCH] gnu-config: removed absolute perl binary paths from gnu-configize Filip Zyzniewski
2011-02-06  2:50 ` Khem Raj
2011-02-06  9:18   ` Martin Jansa
2011-02-06 15:44     ` Filip Zyzniewski

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.