summaryrefslogtreecommitdiff
path: root/rebar.config.sample
diff options
context:
space:
mode:
authorTuncer Ayaz <tuncer.ayaz@gmail.com>2012-11-15 01:28:08 +0100
committerTuncer Ayaz <tuncer.ayaz@gmail.com>2012-11-15 01:31:53 +0100
commite593a90a3ce79b1a4e8e60e5a6fee90f9ea66920 (patch)
tree8ac93e1d7ceb49cb19674ef8a47a2de025353d24 /rebar.config.sample
parent9ac9d935c0dc89506c7b60a21d131372040a1b8c (diff)
downloadrebar-e593a90a3ce79b1a4e8e60e5a6fee90f9ea66920.tar.gz
rebar.config.sample: fix erl_opts example
Diffstat (limited to 'rebar.config.sample')
-rw-r--r--rebar.config.sample4
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},