gpb_compiler: remove duplicate compiling message

It's unnecessary to print "Compiling..." since base_compiler already prints a
message to the effect.
This commit is contained in:
Luis Rascao 2014-12-20 17:48:58 +00:00
parent 3a0c547089
commit 5bb7b2963f

View file

@ -95,7 +95,6 @@ compile_gpb(Source, _Target, Config) ->
GpbOpts = gpb_opts(Config) ++ DefaultDestOpts ++ SelfIncludeOpt,
ok = filelib:ensure_dir(filename:join("ebin", "dummy")),
ok = filelib:ensure_dir(filename:join("include", "dummy")),
?CONSOLE("Compiling ~s\n", [Source]),
case gpb_compile:file(SourceFullPath, GpbOpts) of
ok ->
ok;