aboutsummaryrefslogtreecommitdiffstats
path: root/core/deps.mk
diff options
context:
space:
mode:
authorLoïc Hoguin <[email protected]>2015-08-27 09:42:59 +0200
committerLoïc Hoguin <[email protected]>2015-08-27 09:42:59 +0200
commit30f9a0f94ba3476d1405cf697870584804a41e35 (patch)
tree8a3d137260fcbeaa222bdb58bf638e2168c0b9fd /core/deps.mk
parent2faa9ac794d9b33a1434aa9ca457dac1f9f544e4 (diff)
downloaderlang.mk-30f9a0f94ba3476d1405cf697870584804a41e35.tar.gz
erlang.mk-30f9a0f94ba3476d1405cf697870584804a41e35.tar.bz2
erlang.mk-30f9a0f94ba3476d1405cf697870584804a41e35.zip
Add support for 'compile' step for plugins
Fixes riak_control generating JS files.
Diffstat (limited to 'core/deps.mk')
-rw-r--r--core/deps.mk3
1 files changed, 2 insertions, 1 deletions
diff --git a/core/deps.mk b/core/deps.mk
index c3842d1..44b822e 100644
--- a/core/deps.mk
+++ b/core/deps.mk
@@ -434,7 +434,8 @@ define dep_autopatch_rebar.erl
end
end || P <- Plugins],
[RunPlugin(P, preprocess) || P <- Plugins],
- [RunPlugin(P, pre_compile) || P <- Plugins]
+ [RunPlugin(P, pre_compile) || P <- Plugins],
+ [RunPlugin(P, compile) || P <- Plugins]
end
end(),
halt()