* [Buildroot] [git commit] blktrace: really fix parallel build issue
@ 2014-12-14 20:56 Peter Korsgaard
2014-12-14 21:44 ` Yann E. MORIN
0 siblings, 1 reply; 2+ messages in thread
From: Peter Korsgaard @ 2014-12-14 20:56 UTC (permalink / raw)
To: buildroot
commit: http://git.buildroot.net/buildroot/commit/?id=6b706679b576502272b4d82a9e5b996630ea991c
branch: http://git.buildroot.net/buildroot/commit/?id=refs/heads/master
Fixes:
http://autobuild.buildroot.net/results/dd4/dd47b3ca17bdb597d6b12de6b381cf5f25abaf71/
http://autobuild.buildroot.net/results/a84/a842234fbdc8f65d48089b90ee23523540a7091f/
http://autobuild.buildroot.net/results/e63/e6351692ad6aef397e68ffdf107f3a85e4490015/
And many more.
Commit a21163aed (package/blktrace: do not build in parallel) tried to fix
the parallel build issue, but the package doesn't use the autotools package
infrastructure so BLKTRACE_MAKE isn't used. Instead replace the explicit
$(MAKE) calls with $(MAKE1).
Cc: "Yann E. MORIN" <yann.morin.1998@free.fr>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
---
package/blktrace/blktrace.mk | 6 ++----
1 files changed, 2 insertions(+), 4 deletions(-)
diff --git a/package/blktrace/blktrace.mk b/package/blktrace/blktrace.mk
index 8f3dbab..c193375 100644
--- a/package/blktrace/blktrace.mk
+++ b/package/blktrace/blktrace.mk
@@ -10,14 +10,12 @@ BLKTRACE_DEPENDENCIES = libaio
BLKTRACE_LICENSE = GPLv2+
BLKTRACE_LICENSE_FILES = COPYING
-BLKTRACE_MAKE = $(MAKE1)
-
define BLKTRACE_BUILD_CMDS
- $(MAKE) -C $(@D) $(TARGET_CONFIGURE_OPTS)
+ $(MAKE1) -C $(@D) $(TARGET_CONFIGURE_OPTS)
endef
define BLKTRACE_INSTALL_TARGET_CMDS
- $(MAKE) -C $(@D) $(TARGET_CONFIGURE_OPTS) install \
+ $(MAKE1) -C $(@D) $(TARGET_CONFIGURE_OPTS) install \
DESTDIR=$(TARGET_DIR) prefix=/usr
endef
^ permalink raw reply related [flat|nested] 2+ messages in thread
* [Buildroot] [git commit] blktrace: really fix parallel build issue
2014-12-14 20:56 [Buildroot] [git commit] blktrace: really fix parallel build issue Peter Korsgaard
@ 2014-12-14 21:44 ` Yann E. MORIN
0 siblings, 0 replies; 2+ messages in thread
From: Yann E. MORIN @ 2014-12-14 21:44 UTC (permalink / raw)
To: buildroot
Peter, All,
On 2014-12-14 21:56 +0100, Peter Korsgaard spake thusly:
> commit: http://git.buildroot.net/buildroot/commit/?id=6b706679b576502272b4d82a9e5b996630ea991c
> branch: http://git.buildroot.net/buildroot/commit/?id=refs/heads/master
>
> Fixes:
> http://autobuild.buildroot.net/results/dd4/dd47b3ca17bdb597d6b12de6b381cf5f25abaf71/
> http://autobuild.buildroot.net/results/a84/a842234fbdc8f65d48089b90ee23523540a7091f/
> http://autobuild.buildroot.net/results/e63/e6351692ad6aef397e68ffdf107f3a85e4490015/
>
> And many more.
>
> Commit a21163aed (package/blktrace: do not build in parallel) tried to fix
> the parallel build issue, but the package doesn't use the autotools package
> infrastructure so BLKTRACE_MAKE isn't used. Instead replace the explicit
> $(MAKE) calls with $(MAKE1).
>
> Cc: "Yann E. MORIN" <yann.morin.1998@free.fr>
> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
> ---
> package/blktrace/blktrace.mk | 6 ++----
> 1 files changed, 2 insertions(+), 4 deletions(-)
>
> diff --git a/package/blktrace/blktrace.mk b/package/blktrace/blktrace.mk
> index 8f3dbab..c193375 100644
> --- a/package/blktrace/blktrace.mk
> +++ b/package/blktrace/blktrace.mk
> @@ -10,14 +10,12 @@ BLKTRACE_DEPENDENCIES = libaio
> BLKTRACE_LICENSE = GPLv2+
> BLKTRACE_LICENSE_FILES = COPYING
>
> -BLKTRACE_MAKE = $(MAKE1)
> -
> define BLKTRACE_BUILD_CMDS
> - $(MAKE) -C $(@D) $(TARGET_CONFIGURE_OPTS)
> + $(MAKE1) -C $(@D) $(TARGET_CONFIGURE_OPTS)
Damn, I was not able to reproduce the error on my machine, so I assumed
it was working.
Thanks for fixing this...
Regards,
Yann E. MORIN.
> endef
>
> define BLKTRACE_INSTALL_TARGET_CMDS
> - $(MAKE) -C $(@D) $(TARGET_CONFIGURE_OPTS) install \
> + $(MAKE1) -C $(@D) $(TARGET_CONFIGURE_OPTS) install \
> DESTDIR=$(TARGET_DIR) prefix=/usr
> endef
>
> _______________________________________________
> buildroot mailing list
> buildroot at busybox.net
> http://lists.busybox.net/mailman/listinfo/buildroot
--
.-----------------.--------------------.------------------.--------------------.
| Yann E. MORIN | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software Designer | \ / CAMPAIGN | ___ |
| +33 223 225 172 `------------.-------: X AGAINST | \e/ There is no |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL | v conspiracy. |
'------------------------------^-------^------------------^--------------------'
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2014-12-14 21:44 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-12-14 20:56 [Buildroot] [git commit] blktrace: really fix parallel build issue Peter Korsgaard
2014-12-14 21:44 ` Yann E. MORIN
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox