diff options
author | Niclas Zeising <zeising@FreeBSD.org> | 2014-05-13 05:01:14 +0000 |
---|---|---|
committer | Niclas Zeising <zeising@FreeBSD.org> | 2014-05-13 05:01:14 +0000 |
commit | 08755a564c8591dc379fa3af33cea17b6165f5f8 (patch) | |
tree | c0a9aa69181badc8c1313e6b409d00fc0002dfa7 | |
parent | f6d9105f6a3375e7a4bde86e70203771867e1577 (diff) | |
download | freebsd-ports-08755a564c8591dc379fa3af33cea17b6165f5f8.zip |
Fix build on current [1]
PR: ports/188793 [1], ports/187919 [2]
Submitted by: zeising [1], Thomas Schweikle <tps@vr-web.de> [2]
Approved by: maintainer timeout
-rw-r--r-- | databases/rrdtool/files/patch-bindings_perl-shared_Makefile.PL | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/databases/rrdtool/files/patch-bindings_perl-shared_Makefile.PL b/databases/rrdtool/files/patch-bindings_perl-shared_Makefile.PL new file mode 100644 index 000000000000..1cd7bd9ff7fc --- /dev/null +++ b/databases/rrdtool/files/patch-bindings_perl-shared_Makefile.PL @@ -0,0 +1,11 @@ +--- bindings/perl-shared/Makefile.PL.orig 2014-04-19 13:00:18.000000000 +0200 ++++ bindings/perl-shared/Makefile.PL 2014-04-19 13:13:26.000000000 +0200 +@@ -31,7 +31,7 @@ + /linux/ && do{ $R = "-Wl,--rpath -Wl,$rp"}; + /hpux/ && do{ $R = "+b$rp"}; + /solaris/ && do{ $R = "-R$rp"}; +- /bsd/ && do{ $R = "-R$rp"}; ++ /bsd/ && do{ $R = "-Wl,--rpath -Wl,$rp"}; + /aix/ && do{ $R = "-blibpath:$rp"}; + } + } |