You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For projects which rely on the autotools, the recommended way to specify the installation path is to use the --prefix option of the configure script as follows:
The Makefile script doesn't use
$PREFIX
when I usemake install
, instead, it tries to install on/usr/local/
.It seems it can be fixed changing
ac_default_prefix
in configure to${PREFIX:-/usr/local}
.The text was updated successfully, but these errors were encountered: