After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 699928 - jhbuild runs parallel build even when module specifies makeargs=-j 1
jhbuild runs parallel build even when module specifies makeargs=-j 1
Status: RESOLVED FIXED
Product: jhbuild
Classification: Infrastructure
Component: general
unspecified
Other Linux
: Normal normal
: ---
Assigned To: Jhbuild maintainers
Jhbuild QA
Depends on:
Blocks:
 
 
Reported: 2013-05-08 11:17 UTC by Adam Dingle
Modified: 2013-05-08 15:28 UTC
See Also:
GNOME target: ---
GNOME version: ---


Attachments
fix (967 bytes, patch)
2013-05-08 11:30 UTC, Adam Dingle
none Details | Review

Description Adam Dingle 2013-05-08 11:17:50 UTC
jhbuild automatically builds modules in parallel by passing '-j' to make, but I'd like to suppress that for certain modules which can't handle parallel builds.  If I specify

 module_makeargs = { 'mymodule' : '-j 1' }

in jhbuildrc, that works fine: jhbuild will build the module with -j 1.  But if in the module's definition in the moduleset file I specify

<autotools id="mymodule" makeargs="-j 1">

jhbuild runs 'make -j 1  -j 5' and the build still runs in parallel.
Comment 1 Adam Dingle 2013-05-08 11:30:38 UTC
Created attachment 243581 [details] [review]
fix

Here's a fix.
Comment 2 Adam Dingle 2013-05-08 15:28:51 UTC
The fix is trivial, so I've simply pushed it.  Closing.