diff options
author | Tuncer Ayaz <tuncer.ayaz@gmail.com> | 2012-11-15 01:28:08 +0100 |
---|---|---|
committer | Tuncer Ayaz <tuncer.ayaz@gmail.com> | 2012-11-15 01:31:53 +0100 |
commit | e593a90a3ce79b1a4e8e60e5a6fee90f9ea66920 (patch) | |
tree | 8ac93e1d7ceb49cb19674ef8a47a2de025353d24 | |
parent | 9ac9d935c0dc89506c7b60a21d131372040a1b8c (diff) |
rebar.config.sample: fix erl_opts example
-rw-r--r-- | rebar.config.sample | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/rebar.config.sample b/rebar.config.sample index ff50f23..8e4b51e 100644 --- a/rebar.config.sample +++ b/rebar.config.sample @@ -16,7 +16,9 @@ {erl_first_files, ["mymib1", "mymib2"]}. %% Erlang compiler options -{erl_opts, [no_debug_info, {i, "myinclude"}, {src_dirs, ["src1", "src2"]}, +{erl_opts, [no_debug_info, + {i, "myinclude"}, + {src_dirs, ["src", "src2", "src3"]}, {platform_define, "(linux|solaris|freebsd|darwin)", 'HAVE_SENDFILE'}, {platform_define, "(linux|freebsd)", 'BACKLOG', 128}, |