diff options
| author | Jiří Konečný <DragonLichcz@gmail.com> | 2015-06-02 22:38:20 +0200 |
|---|---|---|
| committer | Jiří Konečný <DragonLichcz@gmail.com> | 2015-06-02 22:38:20 +0200 |
| commit | ff27b190eb30c61e702c2a3b670fd7e581da21dc (patch) | |
| tree | c91d59d4a94aa419e5dd4c0c6c049286a10dc640 /src | |
| parent | 2ee53a125311dfe13c41ed8f0fd0b68ac17fa2b8 (diff) | |
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.
Diffstat (limited to 'src')
| -rw-r--r-- | src/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Makefile b/src/Makefile index e0ce7d88..2945e536 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) |
