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
Hi guys,
I noticed that even if I do a "./configure --prefix=$HOME", nitrogen's makefile tries to install some files in /usr/share/:
Steps to Reproduce (this was RHEL7):
[gustavo@hostname nitrogen]$./configure --prefix=$HOME/.local > /dev/null && make -j 8 > /dev/null && make install > /dev/null ./configure: line 3781: ++: command not found gtk-update-icon-cache: Cache file created successfully. /bin/install: cannot create regular file ‘/usr/share/appdata/nitrogen.appdata.xml’: Permission denied make[3]: *** [install-appdataDATA] Error 1 make[2]: *** [install-am] Error 2 make[1]: *** [install-recursive] Error 1 make: *** [install-recursive] Error 1
The text was updated successfully, but these errors were encountered:
I ran into a similar issue when trying to install to /usr/local. The solution appears to be to edit line 3 in data/Makefile.am as below...
-appdatadir = /usr/share/appdata +appdatadir = $(datarootdir)/appdata
Sorry, something went wrong.
Awesome, thanks @berkley4, will verify!
83bb1c1
daf
No branches or pull requests
Hi guys,
I noticed that even if I do a "./configure --prefix=$HOME", nitrogen's makefile tries to install some files in /usr/share/:
Steps to Reproduce (this was RHEL7):
[gustavo@hostname nitrogen]$./configure --prefix=$HOME/.local > /dev/null && make -j 8 > /dev/null && make install > /dev/null
./configure: line 3781: ++: command not found
gtk-update-icon-cache: Cache file created successfully.
/bin/install: cannot create regular file ‘/usr/share/appdata/nitrogen.appdata.xml’: Permission denied
make[3]: *** [install-appdataDATA] Error 1
make[2]: *** [install-am] Error 2
make[1]: *** [install-recursive] Error 1
make: *** [install-recursive] Error 1
The text was updated successfully, but these errors were encountered: