ikiwiki/doc/bugs/double_shebang_replacement_...

43 lines
1.4 KiB
Markdown

Please consider this [[patch]] for merging in.
[[!format diff """
From e697ba4ef7952ce549d449c4e4daea2e3f0a1aa7 Mon Sep 17 00:00:00 2001
From: Nikolay Orlyuk <virkony@gmail.com>
Date: Sun, 19 Oct 2014 18:46:34 +0300
Subject: [PATCH] fix shebang paths manipulations
Small enhancements for 67e778f4 to avoid erroneous she-bangs
"/usr/bin/perl5.185.18" (version suffix added twice).
---
Makefile.PL | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/Makefile.PL b/Makefile.PL
index 61fe336..2d54658 100755
--- a/Makefile.PL
+++ b/Makefile.PL
@@ -63,7 +63,7 @@ docwiki:
perl_shebangs:
ifneq "$(PERL)" "/usr/bin/perl"
for file in $(shebang_scripts); do \
- $(SED) -e "1s|^#!/usr/bin/perl|#!$(PERL)|" < $$file > "$$file.new"; \
+ $(SED) -e "1s|^#!/usr/bin/perl\>|#!$(PERL)|" < $$file > "$$file.new"; \
[ -x $$file ] && chmod +x "$$file.new"; \
mv -f "$$file.new" $$file; \
done
@@ -72,7 +72,7 @@ endif
perl_shebangs_clean:
ifneq "$(PERL)" "/usr/bin/perl"
for file in $(shebang_scripts); do \
- $(SED) -e "1s|^#!$(PERL)|#!/usr/bin/perl|" < $$file > "$$file.new"; \
+ $(SED) -e "1s|^#!$(PERL)\>|#!/usr/bin/perl|" < $$file > "$$file.new"; \
[ -x $$file ] && chmod +x "$$file.new"; \
mv -f "$$file.new" $$file; \
done
--
2.1.2
"""]]
[[Done]], but this word-boundary construct didn't work on at least
one of my systems, so now we're using `$(PERL)` to do the job
portably. --[[schmonz]]