From 23b44e70c328aa06f00622e3c904f94df89ba535 Mon Sep 17 00:00:00 2001 From: BrianInglis Date: Tue, 3 Mar 2026 17:17:58 +0000 Subject: [PATCH] patchutils 0.4.5 Makefile.am patchview-wrapper script not exe drop EXEEXT patchutils 0.4.5 adds a patchview-wrapper python script used by {git{diff,show},svndiff}view to run patchview alias symlink to filterdiff exe or directly. Makefile.am suffixes this script only with $(EXEEXT) but does not suffix the other scripts provided, causing not found errors as the script is not compiled to an executable suffixed with $(EXEEXT). Treat patchview-wrapper like other shell and perl scripts by not appending $(EXEEXT). --- Makefile.am | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile.am b/Makefile.am index b938140..ef8865b 100644 --- a/Makefile.am +++ b/Makefile.am @@ -15,7 +15,7 @@ bin_SCRIPTS = \ scripts/espdiff dist_bin_SCRIPTS = \ - patchview/patchview-wrapper$(EXEEXT) + patchview/patchview-wrapper #$(EXEEXT) # Bash completion files bashcompletiondir = $(datadir)/bash-completion/completions @@ -76,7 +76,7 @@ $(interdiff_links): src/interdiff$(EXEEXT) $(filterdiff_links): src/filterdiff$(EXEEXT) ln -sf $(notdir $<) $@ -$(patchview_links): patchview/patchview-wrapper$(EXEEXT) +$(patchview_links): patchview/patchview-wrapper #$(EXEEXT) ln -sf $(notdir $<) $@ install-exec-hook: @@ -89,7 +89,7 @@ install-exec-hook: "$(DESTDIR)$(bindir)/`basename $$f | sed '$(transform)'`"; \ done @for f in $(patchview_links); do \ - ln -sf "`echo patchview-wrapper$(EXEEXT) | sed '$(transform)'`" \ + ln -sf "`echo patchview-wrapper | sed '$(transform)'`" \ "$(DESTDIR)$(bindir)/`basename $$f | sed '$(transform)'`"; \ done