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:
Jiří Konečný 2015-06-02 22:38:20 +02:00
parent 2ee53a1253
commit ff27b190eb

View File

@ -59,7 +59,7 @@ install: kak
mkdir -p $(sharedir)/rc
install -m 0644 ../share/kak/kakrc $(sharedir)
install -m 0644 ../rc/* $(sharedir)/rc
ln -s $(sharedir)/rc $(sharedir)/autoload
ln -r -s $(sharedir)/rc $(sharedir)/autoload
mkdir -p $(docdir)
install -m 0644 ../README.asciidoc $(docdir)
install -m 0644 ../doc/* $(docdir)