Can't shed any light on the reltool issue, but if you're customising your rebar build, you should probably just use a plugin instead of a customised rebar binary. A plugin makes this very simple (and can be distributed across multiple projects if you package it as a mini-library).<div>
<br></div><div>-module(fix_rel_plugin).</div><div>-export([post_generate/2]).</div><div><br></div><div>post_generate(Config, _) -></div><div>    Path = code:lib_dir(erl_interface),</div><div>    rebar_file_utils:cp_r(Path, </div>
<div>        filename:join([rebar_utils:get_cwd(), "myproject", "lib", </div><div>            filename:basename(Path)])),</div><div>    ok.<br><br>%% rebar.config</div><div>{plugins, [fix_rel_plugin]}.</div>
<div><br></div><div>At least until reltool gets fixed or the problem better diagnosed you don't have to maintain a custom rebar fork/branch that way.<br><br><div class="gmail_quote">On 4 December 2011 20:06, Jesse Gumm <span dir="ltr"><<a href="mailto:gumm@sigma-star.com">gumm@sigma-star.com</a>></span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">Hi,<br>
<br>
I realize, of course, that I can do workarounds to this issue (and so<br>
far my workaround has been a modified rebar), but my concern is that I<br>
believe this *should* be something that is properly handled by<br>
reltool, at the very least when using {profile,development}.<br>
<br>
Anyone else can shed some light on this?<br>
<span class="HOEnZb"><font color="#888888"><br>
-Jesse<br>
</font></span><div class="HOEnZb"><div class="h5"><br>
On Sun, Dec 4, 2011 at 1:46 AM, Dmitry Kolesnikov<br>
<<a href="mailto:dmkolesnikov@gmail.com">dmkolesnikov@gmail.com</a>> wrote:<br>
> Hello Jesse,<br>
><br>
> I've been using GNU auto tools to manage and build erlang projects. It gives you a flexibility to mix both erlang and native code. In terms of release management, systools is not flexible as I wish thus a two pass processing of tar ball is required but this is straight forward with GNU make.<br>

><br>
> - Dmitry<br>
><br>
> On 3.12.2011, at 23.05, Jesse Gumm <<a href="mailto:sigmastar@gmail.com">sigmastar@gmail.com</a>> wrote:<br>
><br>
>> Hello everyone,<br>
>><br>
>> This is a followup to a post I made a few months ago[1], which was<br>
>> probably too and meandering for anyone to read (I struggle with<br>
>> brevity).<br>
>><br>
>> The short version is that for the life of me, I cannot find a way to<br>
>> force the erl_interface dir to get copied with reltool.<br>
>><br>
>> There are reltool options for forcing an app to get copied, but<br>
>> erl_interface isn't an app (ie, doesn't have a .app file).<br>
>><br>
>> Anyone have any thoughts on this?<br>
>><br>
>> Thanks in advance,<br>
>><br>
>> -Jesse<br>
>><br>
>> [1] <a href="http://erlang.org/pipermail/erlang-questions/2011-October/061923.html" target="_blank">http://erlang.org/pipermail/erlang-questions/2011-October/061923.html</a><br>
>><br>
>> --<br>
>> Jesse Gumm<br>
>> Sigma Star Systems<br>
>> <a href="tel:414.940.4866" value="+14149404866">414.940.4866</a><br>
>> <a href="mailto:gumm@sigma-star.com">gumm@sigma-star.com</a><br>
>> <a href="http://www.sigma-star.com" target="_blank">http://www.sigma-star.com</a><br>
>> _______________________________________________<br>
>> erlang-questions mailing list<br>
>> <a href="mailto:erlang-questions@erlang.org">erlang-questions@erlang.org</a><br>
>> <a href="http://erlang.org/mailman/listinfo/erlang-questions" target="_blank">http://erlang.org/mailman/listinfo/erlang-questions</a><br>
<br>
<br>
<br>
--<br>
Jesse Gumm<br>
Sigma Star Systems<br>
<a href="tel:414.940.4866" value="+14149404866">414.940.4866</a><br>
<a href="mailto:gumm@sigma-star.com">gumm@sigma-star.com</a><br>
<a href="http://www.sigma-star.com" target="_blank">http://www.sigma-star.com</a><br>
_______________________________________________<br>
erlang-questions mailing list<br>
<a href="mailto:erlang-questions@erlang.org">erlang-questions@erlang.org</a><br>
<a href="http://erlang.org/mailman/listinfo/erlang-questions" target="_blank">http://erlang.org/mailman/listinfo/erlang-questions</a><br>
</div></div></blockquote></div><br></div>