From e11ca95576edb5bb5d5f3e8b2925f1d198c924c3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Holger=20Hoffst=C3=A4tte?= Date: Thu, 19 Mar 2026 11:00:26 +0100 Subject: [PATCH] Fix installation of gitshow/gitshowview completion symlinks MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fixes #174 Signed-off-by: Holger Hoffstätte --- Makefile.am | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Makefile.am b/Makefile.am index 433f4aa..7d8960c 100644 --- a/Makefile.am +++ b/Makefile.am @@ -179,7 +179,8 @@ install-data-hook: mv bash-completion-patchutils interdiff && \ for cmd in filterdiff lsdiff grepdiff combinediff flipdiff rediff \ splitdiff recountdiff unwrapdiff dehtmldiff editdiff espdiff \ - fixcvsdiff patchview gitdiff svndiff gitdiffview svndiffview; do \ + fixcvsdiff patchview gitdiff svndiff gitdiffview svndiffview \ + gitshow gitshowview; do \ ln -sf interdiff "$$cmd" || true; \ done; \ fi @@ -202,7 +203,8 @@ endif cd "$(DESTDIR)$(bashcompletiondir)" && \ for cmd in filterdiff lsdiff grepdiff interdiff combinediff flipdiff rediff \ splitdiff recountdiff unwrapdiff dehtmldiff editdiff espdiff \ - fixcvsdiff patchview gitdiff svndiff gitdiffview svndiffview; do \ + fixcvsdiff patchview gitdiff svndiff gitdiffview svndiffview \ + gitshow gitshowview; do \ rm -f "$$cmd"; \ done; \ rm -f patchutils; \