diff options
author | Loïc Hoguin <[email protected]> | 2015-01-07 15:55:30 +0100 |
---|---|---|
committer | Loïc Hoguin <[email protected]> | 2015-01-07 16:27:47 +0100 |
commit | 2a6499a167354f2a1259b28b2c3105f08db977d1 (patch) | |
tree | 0c89e3e037e9babcc7c90a1817bdf530d9cec157 /plugins/relx.mk | |
parent | 1f58d8b925b9ca1a00a2cb5e6938bf00b2238848 (diff) | |
download | erlang.mk-2a6499a167354f2a1259b28b2c3105f08db977d1.tar.gz erlang.mk-2a6499a167354f2a1259b28b2c3105f08db977d1.tar.bz2 erlang.mk-2a6499a167354f2a1259b28b2c3105f08db977d1.zip |
Fix parallel compilation
Parallel compilation is now only enabled for "make" and "make deps app".
To ensure order we spawn a new Make process for "deps", "app" and
"rel" when the "all" target (or no target) is used.
Diffstat (limited to 'plugins/relx.mk')
-rw-r--r-- | plugins/relx.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/relx.mk b/plugins/relx.mk index 9e6f556..8b66277 100644 --- a/plugins/relx.mk +++ b/plugins/relx.mk @@ -38,7 +38,7 @@ endef $(RELX): @$(call relx_fetch) -relx-rel: $(RELX) | deps app +relx-rel: $(RELX) @$(RELX) -c $(RELX_CONFIG) $(RELX_OPTS) distclean-relx-rel: |