Fix Makefile for Fedora packaging system
There was a problem with absolute path for symlink. I think most of the packaging systems will be affected by this problem.
This commit is contained in:
parent
2ee53a1253
commit
ff27b190eb
|
@ -59,7 +59,7 @@ install: kak
|
||||||
mkdir -p $(sharedir)/rc
|
mkdir -p $(sharedir)/rc
|
||||||
install -m 0644 ../share/kak/kakrc $(sharedir)
|
install -m 0644 ../share/kak/kakrc $(sharedir)
|
||||||
install -m 0644 ../rc/* $(sharedir)/rc
|
install -m 0644 ../rc/* $(sharedir)/rc
|
||||||
ln -s $(sharedir)/rc $(sharedir)/autoload
|
ln -r -s $(sharedir)/rc $(sharedir)/autoload
|
||||||
mkdir -p $(docdir)
|
mkdir -p $(docdir)
|
||||||
install -m 0644 ../README.asciidoc $(docdir)
|
install -m 0644 ../README.asciidoc $(docdir)
|
||||||
install -m 0644 ../doc/* $(docdir)
|
install -m 0644 ../doc/* $(docdir)
|
||||||
|
|
Loading…
Reference in New Issue
Block a user