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
installation with make is set to install to $(DESDIR)/usr/...
this makes it so that i cant install to /usr/local because if i set DESTDIR=/usr/local , then it will install to /usr/local/usr/bin/surfer.
simply removing the /usr from the installation locations would allow it to work.
adding DESTDIR := $(if $(DESTDIR),$(DESTDIR),/usr) would allow the same default install location.
The text was updated successfully, but these errors were encountered:
This issue has been fixed already in Jul 16, 2022 by 4fe4be3. You can close the issue now.
Sorry, something went wrong.
No branches or pull requests
installation with make is set to install to $(DESDIR)/usr/...
this makes it so that i cant install to /usr/local because if i set DESTDIR=/usr/local , then it will install to /usr/local/usr/bin/surfer.
simply removing the /usr from the installation locations would allow it to work.
adding DESTDIR :=$(if $ (DESTDIR),$(DESTDIR),/usr) would allow the same default install location.
The text was updated successfully, but these errors were encountered: