make install target broken when erlang bindings enabled -------------------------------------------------------
Key: THRIFT-784 URL: https://issues.apache.org/jira/browse/THRIFT-784 Project: Thrift Issue Type: Bug Reporter: Paul Querna After thrift-646 was committed, `make install` fails. It looks like the wrong variable is being passed to install. {noformat} Index: lib/erl/Makefile.am =================================================================== --- lib/erl/Makefile.am (revision 945834) +++ lib/erl/Makefile.am (working copy) @@ -31,7 +31,7 @@ mkdir -p $(ERLANG_INSTALL_LIB_DIR_thrift)/include ; \ mkdir -p $(ERLANG_INSTALL_LIB_DIR_thrift)/src ; \ for i in ebin/*.app* ebin/*.beam include/*.hrl src/*.erl ; \ - do $(INSTALL) $$p $(ERLANG_INSTALL_LIB_DIR_thrift)/$$p ; \ + do $(INSTALL) $$i $(ERLANG_INSTALL_LIB_DIR_thrift)/$$p ; \ done uninstall: {noformat} -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.