From df33f22224aa9a1fb4f48bfd6f96e39c06defc58 Mon Sep 17 00:00:00 2001 From: Hisham Muhammad Date: Mon, 4 Nov 2013 10:52:47 -0200 Subject: Symlinks shouldn't refer to DESTDIR. Patch submitted by Dmitri Paduchikh. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index b2701aa3..8933d8aa 100644 --- a/Makefile +++ b/Makefile @@ -143,7 +143,7 @@ install_bins: built cd src/bin && for f in $(BIN_FILES); \ do \ cp "$$f" "$(DESTDIR)$(BINDIR)/$$f-$(LUA_VERSION)"; \ - ln -nfs "$(DESTDIR)$(BINDIR)/$$f-$(LUA_VERSION)" "$(DESTDIR)$(BINDIR)/$$f"; \ + ln -nfs "$$f-$(LUA_VERSION)" "$(DESTDIR)$(BINDIR)/$$f"; \ done install_luas: built -- cgit v1.2.3-55-g6feb