diff options
author | Kent Fredric <kentnl@gentoo.org> | 2017-06-13 21:34:57 +1200 |
---|---|---|
committer | Andreas K. Hüttel <dilfridge@gentoo.org> | 2017-06-16 22:29:33 +0200 |
commit | df371dfd1f6bb2a1d2a6646674eb5e5c464f8ef2 (patch) | |
tree | aeab7337fa27efbc04b58268a35f2d1260b69833 /app-text/po4a/files | |
parent | dev-haskell/lifted-base: drop old (diff) | |
download | gentoo-df371dfd1f6bb2a1d2a6646674eb5e5c464f8ef2.tar.gz gentoo-df371dfd1f6bb2a1d2a6646674eb5e5c464f8ef2.tar.bz2 gentoo-df371dfd1f6bb2a1d2a6646674eb5e5c464f8ef2.zip |
app-text/po4a: Fix broken library path tweaks re bug #614122
The original code already had a "use lib" incantation that clearly
intended to imply ".", but ... did so by quoting it twice:
q('.') == "'.''"
That's too much '
Bug: https://bugs.gentoo.org/614122
Package-Manager: Portage-2.3.6, Repoman-2.3.2
Diffstat (limited to 'app-text/po4a/files')
-rw-r--r-- | app-text/po4a/files/po4a-0.45-614122-no-dot-inc.patch | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/app-text/po4a/files/po4a-0.45-614122-no-dot-inc.patch b/app-text/po4a/files/po4a-0.45-614122-no-dot-inc.patch new file mode 100644 index 000000000000..226fa0e9b6e2 --- /dev/null +++ b/app-text/po4a/files/po4a-0.45-614122-no-dot-inc.patch @@ -0,0 +1,26 @@ +From: Kent Fredric <kentfredric@gmail.com> +Date: Tue, 13 Jun 2017 21:10:34 +1200 +Subject: [PATCH] Fix broken use of lib '.' + + "'.'" is not "." + +Bug: https://bugs.gentoo.org/614122 +--- + Build.PL | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/Build.PL b/Build.PL +index 43c6f80..9ee443b 100644 +--- a/Build.PL ++++ b/Build.PL +@@ -1,6 +1,6 @@ + #!/usr/bin/perl + +-use lib q('.'); ++use lib q(.); + use Po4aBuilder; + + my $build = Po4aBuilder->new +-- +2.13.1 + |