aboutsummaryrefslogtreecommitdiffstats
path: root/core/erlc.mk
diff options
context:
space:
mode:
authorIñaki Garay <[email protected]>2014-08-15 13:19:05 -0300
committerIñaki Garay <[email protected]>2014-08-15 13:48:50 -0300
commit813f6c71aa9fa68996a7be9a15924cb4721fe365 (patch)
treef41869f54bf87047225e2916d8292cba1dcbed3a /core/erlc.mk
parent7812f5eacc2d861d5b6040e832389bfe73cf8d8d (diff)
downloaderlang.mk-813f6c71aa9fa68996a7be9a15924cb4721fe365.tar.gz
erlang.mk-813f6c71aa9fa68996a7be9a15924cb4721fe365.tar.bz2
erlang.mk-813f6c71aa9fa68996a7be9a15924cb4721fe365.zip
Allow explicitly listed modules
Diffstat (limited to 'core/erlc.mk')
-rw-r--r--core/erlc.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/erlc.mk b/core/erlc.mk
index 1225eb8..8976e7e 100644
--- a/core/erlc.mk
+++ b/core/erlc.mk
@@ -26,7 +26,7 @@ xyrl_verbose = $(xyrl_verbose_$(V))
app:: ebin/$(PROJECT).app
$(eval MODULES := $(shell find ebin -type f -name \*.beam \
| sed "s/ebin\//'/;s/\.beam/',/" | sed '$$s/.$$//'))
- @if [ -z "$$(grep -E '^[^%]*{modules,[[:space:]]*\[\]}' src/$(PROJECT).app.src)" ]; then \
+ @if [ -z "$$(grep -E '^[^%]*{modules,' src/$(PROJECT).app.src)" ]; then \
echo "Empty modules entry not found in $(PROJECT).app.src. Please consult the erlang.mk README for instructions." >&2; \
exit 1; \
fi