Fix to symlink of DLL which causes link loop

This commit is contained in:
dvertx 2023-06-19 02:28:23 +07:00 committed by GitHub
parent 949a84bc05
commit d9e94ca2bd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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