From 622fb732cfb5c36fff042647024391d3f51de50d 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 ef8865b..55e0717 100644 --- a/Makefile.am +++ b/Makefile.am @@ -99,7 +99,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 @@ -118,7 +119,8 @@ uninstall-local: 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; \