* [Buildroot] [PATCH] heirloom-mailx: run makeconfig in configure step
@ 2012-05-13 9:44 Arnout Vandecappelle
2012-05-14 19:19 ` Peter Korsgaard
0 siblings, 1 reply; 2+ messages in thread
From: Arnout Vandecappelle @ 2012-05-13 9:44 UTC (permalink / raw)
To: buildroot
The heirloom-mailx Makefile runs makeconfig if this has not been done
before. In a parallel build, this means makeconfig may be run several
times in parallel because there are two targets that depend on makeconfig.
See for instance
http://autobuild.buildroot.net/results/d24854be69961f71db189f9d804d4bd2cfa078da
To avoid this, run makeconfig in the configure step, which is not parallel.
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
---
I couldn't actually reproduce the build failure, but the build log gives
a good indication that this is what went wrong.
package/heirloom-mailx/heirloom-mailx.mk | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/package/heirloom-mailx/heirloom-mailx.mk b/package/heirloom-mailx/heirloom-mailx.mk
index 2b28a3f..b1779c0 100644
--- a/package/heirloom-mailx/heirloom-mailx.mk
+++ b/package/heirloom-mailx/heirloom-mailx.mk
@@ -12,6 +12,10 @@ ifeq ($(BR2_PACKAGE_OPENSSL),y)
HEIRLOOM_MAILX_DEPENDENCIES += openssl
endif
+define HEIRLOOM_MAILX_CONFIGURE_CMDS
+ (cd $(@D); $(TARGET_CONFIGURE_OPTS) $(SHELL) ./makeconfig)
+endef
+
define HEIRLOOM_MAILX_BUILD_CMDS
$(TARGET_CONFIGURE_OPTS) $(MAKE) -C $(@D)
endef
--
tg: (9f7bf3b..) t/heirloom (depends on: master)
^ permalink raw reply related [flat|nested] 2+ messages in thread
* [Buildroot] [PATCH] heirloom-mailx: run makeconfig in configure step
2012-05-13 9:44 [Buildroot] [PATCH] heirloom-mailx: run makeconfig in configure step Arnout Vandecappelle
@ 2012-05-14 19:19 ` Peter Korsgaard
0 siblings, 0 replies; 2+ messages in thread
From: Peter Korsgaard @ 2012-05-14 19:19 UTC (permalink / raw)
To: buildroot
>>>>> "Arnout" == Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> writes:
Arnout> The heirloom-mailx Makefile runs makeconfig if this has not been done
Arnout> before. In a parallel build, this means makeconfig may be run several
Arnout> times in parallel because there are two targets that depend on makeconfig.
Arnout> See for instance
Arnout> http://autobuild.buildroot.net/results/d24854be69961f71db189f9d804d4bd2cfa078da
Committed, thanks.
--
Bye, Peter Korsgaard
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2012-05-14 19:19 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-05-13 9:44 [Buildroot] [PATCH] heirloom-mailx: run makeconfig in configure step Arnout Vandecappelle
2012-05-14 19:19 ` Peter Korsgaard
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox