<div dir="ltr"><div><div><div><div>Hello folks,<br><br></div>I'm using the otp_src_20.0.tar.gz downloaded from Erlang.com and following the instructions found here: <a href="http://erlang.org/doc/installation_guide/INSTALL.html">http://erlang.org/doc/installation_guide/INSTALL.html</a><br><br></div>However, when I attempt to run `make` everything works fine until right after the hipe application. The error I get is as follows:<br><br>make[2]: Leaving directory `<root folder>/build/private/src/lib/hipe'<br>make[2]: Entering directory `<root folder>/build/private/src/lib/erlang'<br>make[2]: *** No rule to make target `opt'.  Stop.<br><br></div>When looking at the erlang folder the Makefile has not been generated. The build process is being handled by a custom build system and is kicked off by a custom build script, which really just makes sure the required libraries are linked so that they can be found when running `./configure` and `make`<br><br></div>The relevant parts of the script are as follows, minus some long paths for readability:<br><br>export ERL_TOP=$WRITABLE_SRC_DIR<br>SSL_CONFIG=" --with-ssl-zlib=<zlib path here> --with-ssl=<ssl path here>"<br>tar -xzf otp_src_20.0.tar.gz --strip-components 1 -C "$WRITABLE_SRC_DIR"<br>./configure "--prefix=$INSTALL_DIR" $SSL_CONFIG<br>make -j "$CPU_COUNT"<br></div>