All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/2] perl: fix @INC, v2
@ 2012-10-10  0:48 tom.zanussi
  2012-10-10  0:48 ` [PATCH 1/2] perl: add archlib_exp variable used to generate ARCHLIB_EXP in config.h tom.zanussi
                   ` (2 more replies)
  0 siblings, 3 replies; 7+ messages in thread
From: tom.zanussi @ 2012-10-10  0:48 UTC (permalink / raw)
  To: openembedded-core

From: Tom Zanussi <tom.zanussi@intel.com>

This fixes the bug reported by Kang Kai in a way that allows
perf scripting to continue to work.

Before this patch, @INC on the target would contain a native path:

   @INC:
     /etc/perl
     /usr/lib/perl/site_perl/5.14.2/
     /usr/lib/perl/site_perl/5.14.2
     /usr/lib/perl/vendor_perl/5.14.2/
     /usr/lib/perl/vendor_perl/5.14.2
     /mnt/sda10/poky-all-platform/build-qemuppc/tmp/sysroots/qemuppc/usr/lib/perl/5.14.2/
     /usr/lib/perl/5.14.2
     /usr/local/lib/site_perl
     /usr/lib/perl/5.14.2
     .

Kang Kai's patch reverted the problem that caused the native path
to appear, but also caused perf to report that scripting wasn't
supported.

With this patchset, the native path is gone:

  Built under linux
  Compiled at Oct  9 2012 18:40:15
  @INC:
    /etc/perl
    /usr/lib/perl/site_perl/5.14.2/
    /usr/lib/perl/site_perl/5.14.2
    /usr/lib/perl/vendor_perl/5.14.2/
    /usr/lib/perl/vendor_perl/5.14.2
    /usr/lib/perl/5.14.2/
    /usr/lib/perl/5.14.2
    /usr/local/lib/site_perl
    /usr/lib/perl/5.14.2
    .

and the perf Perl binding continues to work:

root@crownbay:~# perf script rwtop

read counts by pid:

   pid                  comm     # reads   bytes_req  bytes_read
------  --------------------  ----------  ----------  ----------
  1524  perf                        5629      213712      213648
  1508  dropbear                       8      131000         607

write counts by pid:

   pid                  comm    # writes  bytes_written
------  --------------------  ----------  -------------
  1522  perf                          11         845320
  1508  dropbear                       8            944

Tested on qemux86 and crownbay.

The following changes since commit 2c3e8280e67721d42d4be48a8e2c1e9ce9bb89fd:

  bitbake: hob/imageconfigurationpage: a 'hob-image' appears listed in the base image combo box (2012-10-08 16:23:34 +0100)

are available in the git repository at:

  git://git.yoctoproject.org/poky-contrib.git tzanussi/bug-3099-fix
  http://git.yoctoproject.org/cgit/cgit.cgi/poky-contrib/log/?h=tzanussi/bug-3099-fix

Tom Zanussi (2):
  perl: add archlib_exp variable used to generate ARCHLIB_EXP in
    config.h
  perl: use archlib_exp config.sh variable

 meta/recipes-devtools/perl/perl-5.14.2/config.sh          |  1 +
 .../perl/perl-5.14.2/perl-archlib-exp.patch               | 15 +++++++++++++++
 meta/recipes-devtools/perl/perl_5.14.2.bb                 |  3 ++-
 3 files changed, 18 insertions(+), 1 deletion(-)
 create mode 100644 meta/recipes-devtools/perl/perl-5.14.2/perl-archlib-exp.patch

-- 
1.7.11.4




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

* [PATCH 1/2] perl: add archlib_exp variable used to generate ARCHLIB_EXP in config.h
  2012-10-10  0:48 [PATCH 0/2] perl: fix @INC, v2 tom.zanussi
@ 2012-10-10  0:48 ` tom.zanussi
  2012-10-10  0:48 ` [PATCH 2/2] perl: use archlib_exp config.sh variable tom.zanussi
  2012-10-10 14:14 ` [PATCH 0/2] perl: fix @INC, v2 Richard Purdie
  2 siblings, 0 replies; 7+ messages in thread
From: tom.zanussi @ 2012-10-10  0:48 UTC (permalink / raw)
  To: openembedded-core

From: Tom Zanussi <tom.zanussi@intel.com>

perl.c uses an ARCHLIB_EXP define to generate compile-time code that
adds the archlibexp path to @INC during run-time initialization of a
new perl interpreter.

Because we've changed this value in a temporary way to make it
possible to use ExtUtils::Embed in the target build (the temporary
value in config.sh gets re-stripped out during packaging), the
ARCHLIB_EXP value that gets generated still uses the temporary version
instead of the original expected version (i.e. becauses it's in the
generated config.h, it doesn't get stripped out during packaging like
the others in config.sh).

This creates an unmodified version called archlib_exp that gets used
by a modified config_h.SH to get the correct value into config.h

Fixes [YOCTO #3099].

Signed-off-by: Tom Zanussi <tom.zanussi@intel.com>
---
 meta/recipes-devtools/perl/perl-5.14.2/config.sh | 1 +
 1 file changed, 1 insertion(+)

diff --git a/meta/recipes-devtools/perl/perl-5.14.2/config.sh b/meta/recipes-devtools/perl/perl-5.14.2/config.sh
index 0d4ca1c..d1db02e 100644
--- a/meta/recipes-devtools/perl/perl-5.14.2/config.sh
+++ b/meta/recipes-devtools/perl/perl-5.14.2/config.sh
@@ -69,6 +69,7 @@ api_versionstring='5.14.0'
 ar='ar'
 archlib='@LIBDIR@/perl/5.14.2/@ARCH@-thread-multi'
 archlibexp='@STAGINGDIR@@LIBDIR@/perl/5.14.2/@ARCH@-thread-multi'
+archlib_exp='@LIBDIR@/perl/5.14.2/@ARCH@-thread-multi'
 archname64=''
 archname='@ARCH@-thread-multi'
 archobjs=''
-- 
1.7.11.4




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

* [PATCH 2/2] perl: use archlib_exp config.sh variable
  2012-10-10  0:48 [PATCH 0/2] perl: fix @INC, v2 tom.zanussi
  2012-10-10  0:48 ` [PATCH 1/2] perl: add archlib_exp variable used to generate ARCHLIB_EXP in config.h tom.zanussi
@ 2012-10-10  0:48 ` tom.zanussi
  2012-10-10  3:00   ` Kang Kai
  2012-10-10 14:14 ` [PATCH 0/2] perl: fix @INC, v2 Richard Purdie
  2 siblings, 1 reply; 7+ messages in thread
From: tom.zanussi @ 2012-10-10  0:48 UTC (permalink / raw)
  To: openembedded-core

From: Tom Zanussi <tom.zanussi@intel.com>

This patch uses an unmodified version of archlibexp called
archlib_exp, introduced by a previous patch to config.sh, which is
used to generate the correct value of ARCHLIB_EXP into config.h

Fixes [YOCTO #3099].

Signed-off-by: Tom Zanussi <tom.zanussi@intel.com>
---
 .../perl/perl-5.14.2/perl-archlib-exp.patch               | 15 +++++++++++++++
 meta/recipes-devtools/perl/perl_5.14.2.bb                 |  3 ++-
 2 files changed, 17 insertions(+), 1 deletion(-)
 create mode 100644 meta/recipes-devtools/perl/perl-5.14.2/perl-archlib-exp.patch

diff --git a/meta/recipes-devtools/perl/perl-5.14.2/perl-archlib-exp.patch b/meta/recipes-devtools/perl/perl-5.14.2/perl-archlib-exp.patch
new file mode 100644
index 0000000..1c170ef
--- /dev/null
+++ b/meta/recipes-devtools/perl/perl-5.14.2/perl-archlib-exp.patch
@@ -0,0 +1,15 @@
+Upstream-Status:Inappropriate [embedded specific]
+
+Index: perl-5.14.2/config_h.SH
+===================================================================
+--- perl-5.14.2.orig/config_h.SH
++++ perl-5.14.2/config_h.SH
+@@ -996,7 +996,7 @@ sed <<!GROK!THIS! >$CONFIG_H -e 's!^#und
+  *	in programs that are not prepared to deal with ~ expansion at run-time.
+  */
+ #$d_archlib ARCHLIB "$archlib"		/**/
+-#$d_archlib ARCHLIB_EXP "$archlibexp"		/**/
++#$d_archlib ARCHLIB_EXP "$archlib_exp"		/**/
+ 
+ /* ARCHNAME:
+  *	This symbol holds a string representing the architecture name.
diff --git a/meta/recipes-devtools/perl/perl_5.14.2.bb b/meta/recipes-devtools/perl/perl_5.14.2.bb
index 09b2acb..d9206d8 100644
--- a/meta/recipes-devtools/perl/perl_5.14.2.bb
+++ b/meta/recipes-devtools/perl/perl_5.14.2.bb
@@ -7,7 +7,7 @@ LIC_FILES_CHKSUM = "file://Copying;md5=2b4c6ffbcfcbdee469f02565f253d81a \
 # We need gnugrep (for -I)
 DEPENDS = "virtual/db grep-native"
 DEPENDS += "gdbm zlib"
-PR = "r10"
+PR = "r11"
 
 # 5.10.1 has Module::Build built-in
 PROVIDES += "libmodule-build-perl"
@@ -66,6 +66,7 @@ SRC_URI = "http://www.cpan.org/src/5.0/perl-${PV}.tar.gz \
         file://cross-generate_uudmap.patch \
 	file://fix_bad_rpath.patch \
 	file://perl-build-in-t-dir.patch \
+	file://perl-archlib-exp.patch \
 	\
         file://config.sh \
         file://config.sh-32 \
-- 
1.7.11.4




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

* Re: [PATCH 2/2] perl: use archlib_exp config.sh variable
  2012-10-10  0:48 ` [PATCH 2/2] perl: use archlib_exp config.sh variable tom.zanussi
@ 2012-10-10  3:00   ` Kang Kai
  2012-10-10  3:24     ` Tom Zanussi
  0 siblings, 1 reply; 7+ messages in thread
From: Kang Kai @ 2012-10-10  3:00 UTC (permalink / raw)
  To: openembedded-core

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

On 2012?10?10? 08:48, tom.zanussi@intel.com wrote:
> From: Tom Zanussi<tom.zanussi@intel.com>
>
> This patch uses an unmodified version of archlibexp called
> archlib_exp, introduced by a previous patch to config.sh, which is
> used to generate the correct value of ARCHLIB_EXP into config.h
>
> Fixes [YOCTO #3099].
>
> Signed-off-by: Tom Zanussi<tom.zanussi@intel.com>
> ---
>   .../perl/perl-5.14.2/perl-archlib-exp.patch               | 15 +++++++++++++++
>   meta/recipes-devtools/perl/perl_5.14.2.bb                 |  3 ++-
>   2 files changed, 17 insertions(+), 1 deletion(-)
>   create mode 100644 meta/recipes-devtools/perl/perl-5.14.2/perl-archlib-exp.patch
>
> diff --git a/meta/recipes-devtools/perl/perl-5.14.2/perl-archlib-exp.patch b/meta/recipes-devtools/perl/perl-5.14.2/perl-archlib-exp.patch
> new file mode 100644
> index 0000000..1c170ef
> --- /dev/null
> +++ b/meta/recipes-devtools/perl/perl-5.14.2/perl-archlib-exp.patch
> @@ -0,0 +1,15 @@
> +Upstream-Status:Inappropriate [embedded specific]
> +
> +Index: perl-5.14.2/config_h.SH
> +===================================================================
> +--- perl-5.14.2.orig/config_h.SH
> ++++ perl-5.14.2/config_h.SH
> +@@ -996,7 +996,7 @@ sed<<!GROK!THIS!>$CONFIG_H -e 's!^#und
> +  *	in programs that are not prepared to deal with ~ expansion at run-time.
> +  */
> + #$d_archlib ARCHLIB "$archlib"		/**/
> +-#$d_archlib ARCHLIB_EXP "$archlibexp"		/**/
> ++#$d_archlib ARCHLIB_EXP "$archlib_exp"		/**/
> +
> + /* ARCHNAME:
> +  *	This symbol holds a string representing the architecture name.
> diff --git a/meta/recipes-devtools/perl/perl_5.14.2.bb b/meta/recipes-devtools/perl/perl_5.14.2.bb
> index 09b2acb..d9206d8 100644
> --- a/meta/recipes-devtools/perl/perl_5.14.2.bb
> +++ b/meta/recipes-devtools/perl/perl_5.14.2.bb
> @@ -7,7 +7,7 @@ LIC_FILES_CHKSUM = "file://Copying;md5=2b4c6ffbcfcbdee469f02565f253d81a \
>   # We need gnugrep (for -I)
>   DEPENDS = "virtual/db grep-native"
>   DEPENDS += "gdbm zlib"
> -PR = "r10"
> +PR = "r11"
>
>   # 5.10.1 has Module::Build built-in
>   PROVIDES += "libmodule-build-perl"
> @@ -66,6 +66,7 @@ SRC_URI = "http://www.cpan.org/src/5.0/perl-${PV}.tar.gz \
>           file://cross-generate_uudmap.patch \
>   	file://fix_bad_rpath.patch \
>   	file://perl-build-in-t-dir.patch \
> +	file://perl-archlib-exp.patch \
>   	\
>           file://config.sh \
>           file://config.sh-32 \
test them for qemux86 and qemuppc, the @INC path is right now.

Regards,
Kai

[-- Attachment #2: Type: text/html, Size: 3757 bytes --]

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

* Re: [PATCH 2/2] perl: use archlib_exp config.sh variable
  2012-10-10  3:00   ` Kang Kai
@ 2012-10-10  3:24     ` Tom Zanussi
  0 siblings, 0 replies; 7+ messages in thread
From: Tom Zanussi @ 2012-10-10  3:24 UTC (permalink / raw)
  To: Kang Kai; +Cc: openembedded-core

On Wed, 2012-10-10 at 11:00 +0800, Kang Kai wrote:
> On 2012年10月10日 08:48, tom.zanussi@intel.com wrote: 
> > From: Tom Zanussi <tom.zanussi@intel.com>
> > 
> > This patch uses an unmodified version of archlibexp called
> > archlib_exp, introduced by a previous patch to config.sh, which is
> > used to generate the correct value of ARCHLIB_EXP into config.h
> > 
> > Fixes [YOCTO #3099].
> > 
> > Signed-off-by: Tom Zanussi <tom.zanussi@intel.com>
> > ---
> >  .../perl/perl-5.14.2/perl-archlib-exp.patch               | 15 +++++++++++++++
> >  meta/recipes-devtools/perl/perl_5.14.2.bb                 |  3 ++-
> >  2 files changed, 17 insertions(+), 1 deletion(-)
> >  create mode 100644 meta/recipes-devtools/perl/perl-5.14.2/perl-archlib-exp.patch
> > 
> > diff --git a/meta/recipes-devtools/perl/perl-5.14.2/perl-archlib-exp.patch b/meta/recipes-devtools/perl/perl-5.14.2/perl-archlib-exp.patch
> > new file mode 100644
> > index 0000000..1c170ef
> > --- /dev/null
> > +++ b/meta/recipes-devtools/perl/perl-5.14.2/perl-archlib-exp.patch
> > @@ -0,0 +1,15 @@
> > +Upstream-Status:Inappropriate [embedded specific]
> > +
> > +Index: perl-5.14.2/config_h.SH
> > +===================================================================
> > +--- perl-5.14.2.orig/config_h.SH
> > ++++ perl-5.14.2/config_h.SH
> > +@@ -996,7 +996,7 @@ sed <<!GROK!THIS! >$CONFIG_H -e 's!^#und
> > +  *	in programs that are not prepared to deal with ~ expansion at run-time.
> > +  */
> > + #$d_archlib ARCHLIB "$archlib"		/**/
> > +-#$d_archlib ARCHLIB_EXP "$archlibexp"		/**/
> > ++#$d_archlib ARCHLIB_EXP "$archlib_exp"		/**/
> > + 
> > + /* ARCHNAME:
> > +  *	This symbol holds a string representing the architecture name.
> > diff --git a/meta/recipes-devtools/perl/perl_5.14.2.bb b/meta/recipes-devtools/perl/perl_5.14.2.bb
> > index 09b2acb..d9206d8 100644
> > --- a/meta/recipes-devtools/perl/perl_5.14.2.bb
> > +++ b/meta/recipes-devtools/perl/perl_5.14.2.bb
> > @@ -7,7 +7,7 @@ LIC_FILES_CHKSUM = "file://Copying;md5=2b4c6ffbcfcbdee469f02565f253d81a \
> >  # We need gnugrep (for -I)
> >  DEPENDS = "virtual/db grep-native"
> >  DEPENDS += "gdbm zlib"
> > -PR = "r10"
> > +PR = "r11"
> >  
> >  # 5.10.1 has Module::Build built-in
> >  PROVIDES += "libmodule-build-perl"
> > @@ -66,6 +66,7 @@ SRC_URI = "http://www.cpan.org/src/5.0/perl-${PV}.tar.gz \
> >          file://cross-generate_uudmap.patch \
> >  	file://fix_bad_rpath.patch \
> >  	file://perl-build-in-t-dir.patch \
> > +	file://perl-archlib-exp.patch \
> >  	\
> >          file://config.sh \
> >          file://config.sh-32 \
> test them for qemux86 and qemuppc, the @INC path is right now.
> 

Thanks for testing and verifying this, Kai.

Tom

> Regards,
> Kai
> _______________________________________________
> Openembedded-core mailing list
> Openembedded-core@lists.openembedded.org
> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-core





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

* Re: [PATCH 0/2] perl: fix @INC, v2
  2012-10-10  0:48 [PATCH 0/2] perl: fix @INC, v2 tom.zanussi
  2012-10-10  0:48 ` [PATCH 1/2] perl: add archlib_exp variable used to generate ARCHLIB_EXP in config.h tom.zanussi
  2012-10-10  0:48 ` [PATCH 2/2] perl: use archlib_exp config.sh variable tom.zanussi
@ 2012-10-10 14:14 ` Richard Purdie
  2012-10-10 14:27   ` Tom Zanussi
  2 siblings, 1 reply; 7+ messages in thread
From: Richard Purdie @ 2012-10-10 14:14 UTC (permalink / raw)
  To: tom.zanussi; +Cc: openembedded-core

On Tue, 2012-10-09 at 19:48 -0500, tom.zanussi@intel.com wrote:
> From: Tom Zanussi <tom.zanussi@intel.com>
> 
> This fixes the bug reported by Kang Kai in a way that allows
> perf scripting to continue to work.
> 
> Before this patch, @INC on the target would contain a native path:
> 
>    @INC:
>      /etc/perl
>      /usr/lib/perl/site_perl/5.14.2/
>      /usr/lib/perl/site_perl/5.14.2
>      /usr/lib/perl/vendor_perl/5.14.2/
>      /usr/lib/perl/vendor_perl/5.14.2
>      /mnt/sda10/poky-all-platform/build-qemuppc/tmp/sysroots/qemuppc/usr/lib/perl/5.14.2/
>      /usr/lib/perl/5.14.2
>      /usr/local/lib/site_perl
>      /usr/lib/perl/5.14.2
>      .
> 
> Kang Kai's patch reverted the problem that caused the native path
> to appear, but also caused perf to report that scripting wasn't
> supported.
> 
> With this patchset, the native path is gone:
> 
>   Built under linux
>   Compiled at Oct  9 2012 18:40:15
>   @INC:
>     /etc/perl
>     /usr/lib/perl/site_perl/5.14.2/
>     /usr/lib/perl/site_perl/5.14.2
>     /usr/lib/perl/vendor_perl/5.14.2/
>     /usr/lib/perl/vendor_perl/5.14.2
>     /usr/lib/perl/5.14.2/
>     /usr/lib/perl/5.14.2
>     /usr/local/lib/site_perl
>     /usr/lib/perl/5.14.2
>     .
> 
> and the perf Perl binding continues to work:
> 
> root@crownbay:~# perf script rwtop
> 
> read counts by pid:
> 
>    pid                  comm     # reads   bytes_req  bytes_read
> ------  --------------------  ----------  ----------  ----------
>   1524  perf                        5629      213712      213648
>   1508  dropbear                       8      131000         607
> 
> write counts by pid:
> 
>    pid                  comm    # writes  bytes_written
> ------  --------------------  ----------  -------------
>   1522  perf                          11         845320
>   1508  dropbear                       8            944
> 
> Tested on qemux86 and crownbay.
> 
> The following changes since commit 2c3e8280e67721d42d4be48a8e2c1e9ce9bb89fd:
> 
>   bitbake: hob/imageconfigurationpage: a 'hob-image' appears listed in the base image combo box (2012-10-08 16:23:34 +0100)
> 
> are available in the git repository at:
> 
>   git://git.yoctoproject.org/poky-contrib.git tzanussi/bug-3099-fix
>   http://git.yoctoproject.org/cgit/cgit.cgi/poky-contrib/log/?h=tzanussi/bug-3099-fix
> 
> Tom Zanussi (2):
>   perl: add archlib_exp variable used to generate ARCHLIB_EXP in
>     config.h
>   perl: use archlib_exp config.sh variable

I've taken these but I didn't like them being two commits, or the lack
of information in the patch header. I therefore tweaked it before
applying.

Cheers,

Richard




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

* Re: [PATCH 0/2] perl: fix @INC, v2
  2012-10-10 14:14 ` [PATCH 0/2] perl: fix @INC, v2 Richard Purdie
@ 2012-10-10 14:27   ` Tom Zanussi
  0 siblings, 0 replies; 7+ messages in thread
From: Tom Zanussi @ 2012-10-10 14:27 UTC (permalink / raw)
  To: Richard Purdie; +Cc: openembedded-core

On Wed, 2012-10-10 at 15:14 +0100, Richard Purdie wrote:
> On Tue, 2012-10-09 at 19:48 -0500, tom.zanussi@intel.com wrote:
> > From: Tom Zanussi <tom.zanussi@intel.com>
> > 
> > This fixes the bug reported by Kang Kai in a way that allows
> > perf scripting to continue to work.
> > 
> > Before this patch, @INC on the target would contain a native path:
> > 
> >    @INC:
> >      /etc/perl
> >      /usr/lib/perl/site_perl/5.14.2/
> >      /usr/lib/perl/site_perl/5.14.2
> >      /usr/lib/perl/vendor_perl/5.14.2/
> >      /usr/lib/perl/vendor_perl/5.14.2
> >      /mnt/sda10/poky-all-platform/build-qemuppc/tmp/sysroots/qemuppc/usr/lib/perl/5.14.2/
> >      /usr/lib/perl/5.14.2
> >      /usr/local/lib/site_perl
> >      /usr/lib/perl/5.14.2
> >      .
> > 
> > Kang Kai's patch reverted the problem that caused the native path
> > to appear, but also caused perf to report that scripting wasn't
> > supported.
> > 
> > With this patchset, the native path is gone:
> > 
> >   Built under linux
> >   Compiled at Oct  9 2012 18:40:15
> >   @INC:
> >     /etc/perl
> >     /usr/lib/perl/site_perl/5.14.2/
> >     /usr/lib/perl/site_perl/5.14.2
> >     /usr/lib/perl/vendor_perl/5.14.2/
> >     /usr/lib/perl/vendor_perl/5.14.2
> >     /usr/lib/perl/5.14.2/
> >     /usr/lib/perl/5.14.2
> >     /usr/local/lib/site_perl
> >     /usr/lib/perl/5.14.2
> >     .
> > 
> > and the perf Perl binding continues to work:
> > 
> > root@crownbay:~# perf script rwtop
> > 
> > read counts by pid:
> > 
> >    pid                  comm     # reads   bytes_req  bytes_read
> > ------  --------------------  ----------  ----------  ----------
> >   1524  perf                        5629      213712      213648
> >   1508  dropbear                       8      131000         607
> > 
> > write counts by pid:
> > 
> >    pid                  comm    # writes  bytes_written
> > ------  --------------------  ----------  -------------
> >   1522  perf                          11         845320
> >   1508  dropbear                       8            944
> > 
> > Tested on qemux86 and crownbay.
> > 
> > The following changes since commit 2c3e8280e67721d42d4be48a8e2c1e9ce9bb89fd:
> > 
> >   bitbake: hob/imageconfigurationpage: a 'hob-image' appears listed in the base image combo box (2012-10-08 16:23:34 +0100)
> > 
> > are available in the git repository at:
> > 
> >   git://git.yoctoproject.org/poky-contrib.git tzanussi/bug-3099-fix
> >   http://git.yoctoproject.org/cgit/cgit.cgi/poky-contrib/log/?h=tzanussi/bug-3099-fix
> > 
> > Tom Zanussi (2):
> >   perl: add archlib_exp variable used to generate ARCHLIB_EXP in
> >     config.h
> >   perl: use archlib_exp config.sh variable
> 
> I've taken these but I didn't like them being two commits, or the lack
> of information in the patch header. I therefore tweaked it before
> applying.
> 

OK, thanks, sorry to miss those things, will keep it in mind for next
time...

Tom

> Cheers,
> 
> Richard
> 





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

end of thread, other threads:[~2012-10-10 14:40 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-10-10  0:48 [PATCH 0/2] perl: fix @INC, v2 tom.zanussi
2012-10-10  0:48 ` [PATCH 1/2] perl: add archlib_exp variable used to generate ARCHLIB_EXP in config.h tom.zanussi
2012-10-10  0:48 ` [PATCH 2/2] perl: use archlib_exp config.sh variable tom.zanussi
2012-10-10  3:00   ` Kang Kai
2012-10-10  3:24     ` Tom Zanussi
2012-10-10 14:14 ` [PATCH 0/2] perl: fix @INC, v2 Richard Purdie
2012-10-10 14:27   ` Tom Zanussi

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.