diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2017-11-22 13:14:39 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2017-11-22 13:14:39 +0000 |
commit | 0cadd87ab76a1ffe907c8d9352b7e81cfe2c81c5 (patch) | |
tree | 836d2ebadbb58aae7acf0892467305bd3b1ba39e /community/munin/fix-build.patch | |
parent | f36afe370ef2d04d4bc1821d6cdd428aa543dfe4 (diff) | |
download | aports-0cadd87ab76a1ffe907c8d9352b7e81cfe2c81c5.tar.bz2 aports-0cadd87ab76a1ffe907c8d9352b7e81cfe2c81c5.tar.xz |
community/munin: upgrade to 2.0.34
Diffstat (limited to 'community/munin/fix-build.patch')
-rw-r--r-- | community/munin/fix-build.patch | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/community/munin/fix-build.patch b/community/munin/fix-build.patch new file mode 100644 index 0000000000..b0cf98a4b4 --- /dev/null +++ b/community/munin/fix-build.patch @@ -0,0 +1,36 @@ +diff --git a/common/Build.PL b/common/Build.PL +index ff0f4c0..7755044 100644 +--- a/common/Build.PL ++++ b/common/Build.PL +@@ -1,3 +1,4 @@ ++BEGIN { push @INC, '.'; } + use Module::Build; + + my $build = Module::Build->new( +diff --git a/master/Build.PL b/master/Build.PL +index 6dc31ea..e7de302 100644 +--- a/master/Build.PL ++++ b/master/Build.PL +@@ -1,3 +1,4 @@ ++BEGIN { push @INC, '.'; } + use MasterBuilder; + + use warnings; +diff --git a/node/Build.PL b/node/Build.PL +index c0e6420..def4774 100644 +--- a/node/Build.PL ++++ b/node/Build.PL +@@ -1,3 +1,4 @@ ++BEGIN { push @INC, '.'; } + use NodeBuilder; + + use warnings; +diff --git a/plugins/Build.PL b/plugins/Build.PL +index cee0a97..8f5942f 100644 +--- a/plugins/Build.PL ++++ b/plugins/Build.PL +@@ -1,3 +1,4 @@ ++BEGIN { push @INC, '.'; } + use PluginsBuilder; + + use warnings; |