* [PATCH 0/1] sysstat: backport a patch to fix a parallel building error
@ 2013-07-01 0:32 rongqing.li
2013-07-01 0:32 ` [PATCH 1/1] " rongqing.li
0 siblings, 1 reply; 3+ messages in thread
From: rongqing.li @ 2013-07-01 0:32 UTC (permalink / raw)
To: openembedded-core
From: "Roy.Li" <rongqing.li@windriver.com>
The following changes since commit ff65497cd9a96d5ab49b16ba1f7e30a216ff4a42:
classes/insane: remove la2 check which no longer exists from ERROR_QA (2013-06-28 16:33:05 +0100)
are available in the git repository at:
git://git.pokylinux.org/poky-contrib roy/sysstat
http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=roy/sysstat
Roy.Li (1):
sysstat: backport a patch to fix a parallel building error
...-Makefile-to-allow-for-parallel-execution.patch | 33 ++++++++++++++++++++
meta/recipes-extended/sysstat/sysstat.inc | 3 +-
2 files changed, 35 insertions(+), 1 deletion(-)
create mode 100644 meta/recipes-extended/sysstat/files/0001-Update-Makefile-to-allow-for-parallel-execution.patch
--
1.7.10.4
^ permalink raw reply [flat|nested] 3+ messages in thread
* [PATCH 1/1] sysstat: backport a patch to fix a parallel building error
2013-07-01 0:32 [PATCH 0/1] sysstat: backport a patch to fix a parallel building error rongqing.li
@ 2013-07-01 0:32 ` rongqing.li
2013-07-01 14:47 ` Burton, Ross
0 siblings, 1 reply; 3+ messages in thread
From: rongqing.li @ 2013-07-01 0:32 UTC (permalink / raw)
To: openembedded-core
From: "Roy.Li" <rongqing.li@windriver.com>
Signed-off-by: Roy.Li <rongqing.li@windriver.com>
---
...-Makefile-to-allow-for-parallel-execution.patch | 33 ++++++++++++++++++++
meta/recipes-extended/sysstat/sysstat.inc | 3 +-
2 files changed, 35 insertions(+), 1 deletion(-)
create mode 100644 meta/recipes-extended/sysstat/files/0001-Update-Makefile-to-allow-for-parallel-execution.patch
diff --git a/meta/recipes-extended/sysstat/files/0001-Update-Makefile-to-allow-for-parallel-execution.patch b/meta/recipes-extended/sysstat/files/0001-Update-Makefile-to-allow-for-parallel-execution.patch
new file mode 100644
index 0000000..d744002
--- /dev/null
+++ b/meta/recipes-extended/sysstat/files/0001-Update-Makefile-to-allow-for-parallel-execution.patch
@@ -0,0 +1,33 @@
+From eb44730094a68f4d37d95ddc3480a5972619b43f Mon Sep 17 00:00:00 2001
+From: Sebastien GODARD <sysstat@orange.fr.fake>
+Date: Sat, 22 Jun 2013 14:08:40 +0200
+Subject: [PATCH] Update Makefile to allow for parallel execution
+
+Upstream-status: backport
+
+Rewrite rule for librdstats.a in Makefile to prevent possible file
+corruption when using make -j.
+
+Signed-off-by: Sebastien GODARD <sysstat@orange.fr.fake>
+---
+ Makefile.in | 4 +++-
+ 1 file changed, 3 insertions(+), 1 deletion(-)
+
+diff --git a/Makefile.in b/Makefile.in
+index f8e6159..159cacf 100644
+--- a/Makefile.in
++++ b/Makefile.in
+@@ -202,7 +202,9 @@ sadf_misc.o: sadf_misc.c sadf.h sa.h
+ libsyscom.a: common.o ioconf.o
+ $(AR) rvs $@ $?
+
+-librdstats.a: librdstats.a(rd_stats.o count.o)
++# Ditto
++librdstats.a: rd_stats.o count.o
++ $(AR) rvs $@ $?
+
+ librdsensors.a: librdsensors.a(rd_sensors.o)
+
+--
+1.7.10.4
+
diff --git a/meta/recipes-extended/sysstat/sysstat.inc b/meta/recipes-extended/sysstat/sysstat.inc
index 263cbd2..ac3c89b 100644
--- a/meta/recipes-extended/sysstat/sysstat.inc
+++ b/meta/recipes-extended/sysstat/sysstat.inc
@@ -5,7 +5,8 @@ LICENSE = "GPLv2+"
SECTION = "console/utils"
SRC_URI = "http://pagesperso-orange.fr/sebastien.godard/sysstat-${PV}.tar.gz \
- file://99_sysstat"
+ file://99_sysstat \
+ file://0001-Update-Makefile-to-allow-for-parallel-execution.patch "
inherit autotools gettext
--
1.7.10.4
^ permalink raw reply related [flat|nested] 3+ messages in thread* Re: [PATCH 1/1] sysstat: backport a patch to fix a parallel building error
2013-07-01 0:32 ` [PATCH 1/1] " rongqing.li
@ 2013-07-01 14:47 ` Burton, Ross
0 siblings, 0 replies; 3+ messages in thread
From: Burton, Ross @ 2013-07-01 14:47 UTC (permalink / raw)
To: rongqing.li; +Cc: openembedded-core
On 1 July 2013 01:32, <rongqing.li@windriver.com> wrote:
> +From eb44730094a68f4d37d95ddc3480a5972619b43f Mon Sep 17 00:00:00 2001
> +From: Sebastien GODARD <sysstat@orange.fr.fake>
> +Date: Sat, 22 Jun 2013 14:08:40 +0200
> +Subject: [PATCH] Update Makefile to allow for parallel execution
> +
> +Upstream-status: backport
Please put the Upstream-Status: Backport and your own signed-off
(which you forgot) at the top of the patch, before the patch header.
Ross
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2013-07-01 14:48 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-07-01 0:32 [PATCH 0/1] sysstat: backport a patch to fix a parallel building error rongqing.li
2013-07-01 0:32 ` [PATCH 1/1] " rongqing.li
2013-07-01 14:47 ` Burton, Ross
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox