Fix Makefile portability
OBS *among others* need to copy files from the build folder to the package folder. With the old version, that wasn't possible, as it would try to install the software in the worker folder, of course something denied on public instances. Adding $(DESTDIR) before all paths ensure that you can install to another folder
This commit is contained in:
parent
9aaefa60fe
commit
344b740d9b
1 changed files with 3 additions and 3 deletions
6
Makefile
6
Makefile
|
@ -192,9 +192,9 @@ install:
|
|||
@[ -n "$(PREFIX)" ] || { echo "PREFIX is not set"; exit 1; }
|
||||
@{\
|
||||
set -e ;\
|
||||
bin="$(PREFIX)/bin" ;\
|
||||
doc="$(PREFIX)/share/doc/yadm" ;\
|
||||
man="$(PREFIX)/share/man/man1" ;\
|
||||
bin="$(DESTDIR)$(PREFIX)/bin" ;\
|
||||
doc="$(DESTDIR)$(PREFIX)/share/doc/yadm" ;\
|
||||
man="$(DESTDIR)$(PREFIX)/share/man/man1" ;\
|
||||
install -d "$$bin" "$$doc" "$$man" ;\
|
||||
install -m 0755 yadm "$$bin" ;\
|
||||
install -m 0644 yadm.1 "$$man" ;\
|
||||
|
|
Loading…
Reference in a new issue