We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
On CentOS the install directories for erlang modules are: 32 bits: /usr/lib/erlang/lib/ 64 bits: /usr/lib64/erlang/lib/
The problem is that LIB_DIR is constructed in a way that lib is always added before erlang/lib :
LIB_DIR
lib
erlang/lib
libdir = ${exec_prefix}/lib LIB_DIR = ${libdir}/erlang/lib/$(APPNAME)-$(VERSION)
This problem appears on centos 6 / 64bits On other systems the paths may be different.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
On CentOS the install directories for erlang modules are:
32 bits: /usr/lib/erlang/lib/
64 bits: /usr/lib64/erlang/lib/
The problem is that
LIB_DIR
is constructed in a way thatlib
is always added beforeerlang/lib
:This problem appears on centos 6 / 64bits
On other systems the paths may be different.
The text was updated successfully, but these errors were encountered: