summaryrefslogtreecommitdiff
path: root/www/ikiwiki/patches/patch-ab
diff options
context:
space:
mode:
Diffstat (limited to 'www/ikiwiki/patches/patch-ab')
-rw-r--r--www/ikiwiki/patches/patch-ab18
1 files changed, 0 insertions, 18 deletions
diff --git a/www/ikiwiki/patches/patch-ab b/www/ikiwiki/patches/patch-ab
deleted file mode 100644
index e79b3421239..00000000000
--- a/www/ikiwiki/patches/patch-ab
+++ /dev/null
@@ -1,18 +0,0 @@
-$NetBSD: patch-ab,v 1.7 2011/09/05 22:07:28 schmonz Exp $
-
-When generating scripts, give them the interpreter we generated them with.
-
---- IkiWiki/Setup/Standard.pm.orig 2011-07-29 10:59:11.000000000 +0000
-+++ IkiWiki/Setup/Standard.pm
-@@ -14,7 +14,10 @@ sub import {
- sub gendump ($@) {
- my $class=shift;
-
-- "#!/usr/bin/perl",
-+ my $thisperl = eval q{use Config; $Config{perlpath}};
-+ error($@) if $@;
-+
-+ "#!$thisperl",
- "#",
- (map { "# $_" } @_),
- "use IkiWiki::Setup::Standard {",