From 3bd8c36b74a56d33f8c3b98c1b440a839ac6e92f Mon Sep 17 00:00:00 2001 From: tduzan Date: Fri, 26 Jun 2015 12:35:03 -0600 Subject: [PATCH] Removed the '-r' flag from the ln command in the install step of the Makefile. It is not a POSIX compliant option, therefore does not work on BSD or OS X. Reference GH Issue#286. Based on my understanding of this Makefile, the '-r' flag is unnecessary and didn't do anything additional. The pathspec for both the source and target are explicit using a variable for a portion. Will test via Homebrew following pushing this to my fork. --- src/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Makefile b/src/Makefile index 9107794c..a3c6e870 100644 --- a/src/Makefile +++ b/src/Makefile @@ -62,7 +62,7 @@ install: kak mkdir -p $(sharedir)/rc install -m 0644 ../share/kak/kakrc $(sharedir) install -m 0644 ../rc/* $(sharedir)/rc - ln -r -s $(sharedir)/rc $(sharedir)/autoload + ln -s $(sharedir)/rc $(sharedir)/autoload mkdir -p $(docdir) install -m 0644 ../README.asciidoc $(docdir) install -m 0644 ../doc/* $(docdir)