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
Hello,
Seems like there is a misprint in ./builddeps.sh, line 21.
Current line:
./autogen.sh && ./configure --prefix=${pfx} && make && sudo make prefix=${pfix} install
Should be:
./autogen.sh && ./configure --prefix=${pfix} && make && sudo make prefix=${pfix} install
Notice ${pfx} is changed to ${pfix}
There is no variable named 'pfx' and as a result the prefix is set to an empty string.
The text was updated successfully, but these errors were encountered:
Hello,
Seems like there is a misprint in ./builddeps.sh, line 21.
Current line:
./autogen.sh && ./configure --prefix=${pfx} && make && sudo make prefix=${pfix} install
Should be:
./autogen.sh && ./configure --prefix=${pfix} && make && sudo make prefix=${pfix} install
Notice ${pfx} is changed to ${pfix}
There is no variable named 'pfx' and as a result the prefix is set to an empty string.
The text was updated successfully, but these errors were encountered: