summaryrefslogtreecommitdiffstats
path: root/archive
diff options
context:
space:
mode:
authorIsmael Luceno2019-08-30 20:20:44 +0200
committerIsmael Luceno2019-08-30 20:25:23 +0200
commitf40cbe2323bd4e616e9a91d36e0abcbd59947284 (patch)
tree41a3e8e017b0dd2d9779a405b4e2926b3d2d6df4 /archive
parent6cb1bc3e5db3884591a9bf8bf171e535a3b089dd (diff)
lz4: Force replacement of targets to fix install
The Makefile wrongly uses LN_S instead of LN_SF to install symlinks, which fails if they exist on the system. Set LN_S='ln -sf' to workaround that.
Diffstat (limited to 'archive')
-rw-r--r--archive/lz4/HISTORY4
-rwxr-xr-xarchive/lz4/INSTALL2
2 files changed, 5 insertions, 1 deletions
diff --git a/archive/lz4/HISTORY b/archive/lz4/HISTORY
index 0e13f15ad4..3c6c86bb68 100644
--- a/archive/lz4/HISTORY
+++ b/archive/lz4/HISTORY
@@ -1,3 +1,7 @@
+2019-08-30 Ismael Luceno <ismael@sourcemage.org>
+ * INSTALL: Fixed installation; set LN_S=LN_SF to force the replacement
+ of targets
+
2019-08-29 Florian Franzmann <siflfran@hawo.stw.uni-erlangen.de>
* DETAILS: version 1.9.2
diff --git a/archive/lz4/INSTALL b/archive/lz4/INSTALL
index 95a70a10ec..da28c74260 100755
--- a/archive/lz4/INSTALL
+++ b/archive/lz4/INSTALL
@@ -1 +1 @@
-make PREFIX=/usr install
+make LN_S='ln -sf' PREFIX=/usr install