summaryrefslogtreecommitdiffstats
path: root/Makefile.inc
diff options
context:
space:
mode:
authorYann Collet <cyan@fb.com>2020-12-01 00:09:22 (GMT)
committerYann Collet <cyan@fb.com>2020-12-01 00:09:22 (GMT)
commit5a551754cf48d020152f48d5bf1e6d99fa6d4c27 (patch)
tree9fda1baa7b70c089049970f2ab0108be03e9b685 /Makefile.inc
parente585a438c714652e866a59371b287f52aa4d2dc3 (diff)
parent07a2476fe61e0fc0b7e25f411b13619295479064 (diff)
downloadlz4-5a551754cf48d020152f48d5bf1e6d99fa6d4c27.zip
lz4-5a551754cf48d020152f48d5bf1e6d99fa6d4c27.tar.gz
lz4-5a551754cf48d020152f48d5bf1e6d99fa6d4c27.tar.bz2
Merge branch 'dev' into Makefile
remove `LN_S`
Diffstat (limited to 'Makefile.inc')
-rw-r--r--Makefile.inc4
1 files changed, 0 insertions, 4 deletions
diff --git a/Makefile.inc b/Makefile.inc
index 338ef56..0840a56 100644
--- a/Makefile.inc
+++ b/Makefile.inc
@@ -85,18 +85,14 @@ endif
# Avoid symlinks when targetting Windows or building on a Windows host
ifeq ($(WINBASED),yes)
-LN_S = cp -p
LN_SF = cp -p
else
ifneq (,$(filter MINGW% MSYS% CYGWIN%,$(shell uname)))
-LN_S = cp -p
LN_SF = cp -p
else
ifneq (,$(filter Windows%,$(OS)))
-LN_S = cp -p
LN_SF = cp -p
else
-LN_S = ln -s
LN_SF = ln -sf
endif
endif