summaryrefslogtreecommitdiff
path: root/packages/perl/perl-5.8.8
diff options
context:
space:
mode:
authorJamie Lenehan <lenehan@twibble.org>2007-05-30 07:00:11 +0000
committerJamie Lenehan <lenehan@twibble.org>2007-05-30 07:00:11 +0000
commit290ca8b6c88511606acfff39a20e414c58a0a724 (patch)
treee07b1c4108d927dd8fb897ca81f3dd0228a51c61 /packages/perl/perl-5.8.8
parent39611c22b7715ebba0f61c7a32a237373243d699 (diff)
perl-native 5.8.8: Fix an issues with the perl makedepend script not
properly terminating a quote. This is in theory the fix for the /bin/sh -> /bin/dash problems with perl, however since I don't have any issues here with dash (ubuntu 6.10) I can't confirm this. The patch is an obvious fix though so I'm adding it.
Diffstat (limited to 'packages/perl/perl-5.8.8')
-rw-r--r--packages/perl/perl-5.8.8/native-makedepend-dash.patch13
1 files changed, 13 insertions, 0 deletions
diff --git a/packages/perl/perl-5.8.8/native-makedepend-dash.patch b/packages/perl/perl-5.8.8/native-makedepend-dash.patch
new file mode 100644
index 0000000000..1f15474377
--- /dev/null
+++ b/packages/perl/perl-5.8.8/native-makedepend-dash.patch
@@ -0,0 +1,13 @@
+Index: perl-5.8.8/makedepend.SH
+===================================================================
+--- perl-5.8.8.orig/makedepend.SH 2007-05-24 12:06:52.000000000 +1000
++++ perl-5.8.8/makedepend.SH 2007-05-24 12:27:33.000000000 +1000
+@@ -128,7 +128,7 @@
+ *.y) filebase=`basename $file .y` ;;
+ esac
+ case "$file" in
+- */*) finc="-I`echo $file | sed 's#/[^/]*$##`" ;;
++ */*) finc="-I`echo $file | sed 's#/[^/]*$##'`" ;;
+ *) finc= ;;
+ esac
+ $echo "Finding dependencies for $filebase$_o."