aboutsummaryrefslogtreecommitdiffstats
path: root/cmd/zstream
diff options
context:
space:
mode:
authorнаб <[email protected]>2021-05-30 05:37:05 +0200
committerGitHub <[email protected]>2021-05-29 20:37:05 -0700
commitd484a7255b8fcc31e3602bb89b0b54a994f48d17 (patch)
treef807bc8d5bbc6c16e19f3e4177f35afce6f4a07d /cmd/zstream
parent102c91b4f80c8c1b8c8373529e05ce13b1d18eba (diff)
zstream: force-install zstreamdump link
Accidentally introduced by commit dd00925e8d. Force-install the zstreamdump link, this is a supported configuration and the install should not fail if it needs to overwrite an existing file. Also cd to work around some funny platforms as noted in AC_PROG_LN_S doc Reviewed-by: Brian Behlendorf <[email protected]> Reviewed-by: Ryan Moeller <[email protected]> Reviewed-by: Allan Jude <[email protected]> Signed-off-by: Ahelenia Ziemiańska <[email protected]> Closes #12143
Diffstat (limited to 'cmd/zstream')
-rw-r--r--cmd/zstream/Makefile.am2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/zstream/Makefile.am b/cmd/zstream/Makefile.am
index f36e1e364..8e813027f 100644
--- a/cmd/zstream/Makefile.am
+++ b/cmd/zstream/Makefile.am
@@ -17,4 +17,4 @@ zstream_LDADD = \
include $(top_srcdir)/config/CppCheck.am
install-exec-hook:
- $(LN_S) zstream $(DESTDIR)$(sbindir)/zstreamdump
+ cd $(DESTDIR)$(sbindir) && $(LN_S) -f zstream zstreamdump