From d9e94ca2bdec3491945f6933adb1682db0e38945 Mon Sep 17 00:00:00 2001 From: dvertx Date: Mon, 19 Jun 2023 02:28:23 +0700 Subject: [PATCH] Fix to symlink of DLL which causes link loop --- libr/bin/d/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libr/bin/d/Makefile b/libr/bin/d/Makefile index b0112c9579..80ff9b4c37 100644 --- a/libr/bin/d/Makefile +++ b/libr/bin/d/Makefile @@ -51,7 +51,7 @@ CWD=$(shell pwd) symstall install-symlink: mkdir -p "$P" for FILE in * ; do \ - if [ "$$FILE" != Makefile ]; then \ + if [ "$$FILE" != Makefile -a "$$FILE" != dll ]; then \ ln -fs "${CWD}/$$FILE" "$P/$$FILE" ; \ fi ; \ done