aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/protobuffs.mk
diff options
context:
space:
mode:
authorLoïc Hoguin <[email protected]>2015-05-16 15:17:58 +0300
committerLoïc Hoguin <[email protected]>2015-05-16 15:17:58 +0300
commitbcb1ed7963abc9474174b7630df0a6ce66d74231 (patch)
tree1a3f76c0d4ee6c7010fb68f4796d87af68a05346 /plugins/protobuffs.mk
parentdfb186c781493e8c88ea396ec1c540a3bda68105 (diff)
downloaderlang.mk-bcb1ed7963abc9474174b7630df0a6ce66d74231.tar.gz
erlang.mk-bcb1ed7963abc9474174b7630df0a6ce66d74231.tar.bz2
erlang.mk-bcb1ed7963abc9474174b7630df0a6ce66d74231.zip
Only use +debug_info to compile protobuffs generated modules
Diffstat (limited to 'plugins/protobuffs.mk')
-rw-r--r--plugins/protobuffs.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/protobuffs.mk b/plugins/protobuffs.mk
index e3e58f5..d180b1f 100644
--- a/plugins/protobuffs.mk
+++ b/plugins/protobuffs.mk
@@ -11,7 +11,7 @@ proto_verbose = $(proto_verbose_$(V))
define compile_proto
@mkdir -p ebin/ include/
$(proto_verbose) $(call erlang,$(call compile_proto.erl,$(1)))
- $(proto_verbose) erlc $(ERLC_OPTS) -o ebin/ ebin/*.erl
+ $(proto_verbose) erlc +debug_info -o ebin/ ebin/*.erl
@rm ebin/*.erl
endef