From 295ef77fb65549c624a73879e5aa3daf7dc31631 Mon Sep 17 00:00:00 2001 From: cel Date: Wed, 14 Nov 2018 14:53:02 -1000 Subject: [PATCH] Support busybox ln command --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index f2896ce..a0767b2 100644 --- a/Makefile +++ b/Makefile @@ -18,8 +18,8 @@ install: all link: all @mkdir -vp $(DESTDIR)$(BINDIR) $(DESTDIR)$(MANDIR)/man1 - @ln -rsvf $(BIN) $(DESTDIR)$(BINDIR) - @ln -rsvf $(BIN).1 $(DESTDIR)$(MANDIR)/man1 + @ln -svf $(shell realpath $(BIN)) $(DESTDIR)$(BINDIR) + @ln -svf $(shell realpath $(BIN).1) $(DESTDIR)$(MANDIR)/man1 uninstall: @rm -vf \