From ff27b190eb30c61e702c2a3b670fd7e581da21dc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ji=C5=99=C3=AD=20Kone=C4=8Dn=C3=BD?= Date: Tue, 2 Jun 2015 22:38:20 +0200 Subject: [PATCH] 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. --- src/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Makefile b/src/Makefile index e0ce7d886..2945e5361 100644 --- a/src/Makefile +++ b/src/Makefile @@ -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)