2022-05-29 18:56:24 +00:00
|
|
|
From cc6ffae33eef2fd1b595dfda72defed17aae89c4 Mon Sep 17 00:00:00 2001
|
2018-09-08 14:50:14 +00:00
|
|
|
From: =?UTF-8?q?Klaus=20K=C3=A4mpf?= <kkaempf@suse.de>
|
2022-05-29 18:56:24 +00:00
|
|
|
Date: Mon, 16 May 2022 17:32:55 +0200
|
|
|
|
Subject: [PATCH] build: remove CPAN rpaths
|
2018-09-08 14:50:14 +00:00
|
|
|
|
2022-05-29 18:56:24 +00:00
|
|
|
Acked-by: David Disseldorp <ddiss@suse.de>
|
2018-09-08 14:50:14 +00:00
|
|
|
---
|
|
|
|
src/perl/LogImport/Makefile.PL | 2 +-
|
|
|
|
src/perl/MMV/Makefile.PL | 2 +-
|
|
|
|
src/perl/PMDA/Makefile.PL | 2 +-
|
|
|
|
3 files changed, 3 insertions(+), 3 deletions(-)
|
|
|
|
|
|
|
|
diff --git a/src/perl/LogImport/Makefile.PL b/src/perl/LogImport/Makefile.PL
|
2022-05-29 18:56:24 +00:00
|
|
|
index a254f5ad5..2ec42f51a 100644
|
2018-09-08 14:50:14 +00:00
|
|
|
--- a/src/perl/LogImport/Makefile.PL
|
|
|
|
+++ b/src/perl/LogImport/Makefile.PL
|
|
|
|
@@ -15,7 +15,7 @@ if ($ENV{TARGET_OS} eq "mingw") {
|
|
|
|
else {
|
|
|
|
$ldfrom = "LogImport.o",
|
|
|
|
$inc = "-I$ENV{PCP_TOPDIR}/src/include/pcp -I/usr/include/pcp";
|
|
|
|
- $libs = ["-L$ENV{PCP_TOPDIR}/src/libpcp/src -L$ENV{PCP_TOPDIR}/src/libpcp_import/src -lpcp_import -lpcp"];
|
|
|
|
+ $libs = ["-lpcp_import -lpcp"];
|
|
|
|
}
|
|
|
|
if ($ENV{TARGET_OS} eq "darwin") {
|
|
|
|
# standard ones, minus -arch ppc
|
|
|
|
diff --git a/src/perl/MMV/Makefile.PL b/src/perl/MMV/Makefile.PL
|
2022-05-29 18:56:24 +00:00
|
|
|
index 7a6787ded..1e4cea031 100644
|
2018-09-08 14:50:14 +00:00
|
|
|
--- a/src/perl/MMV/Makefile.PL
|
|
|
|
+++ b/src/perl/MMV/Makefile.PL
|
|
|
|
@@ -15,7 +15,7 @@ if ($ENV{TARGET_OS} eq "mingw") {
|
|
|
|
else {
|
|
|
|
$ldfrom = "MMV.o";
|
|
|
|
$inc = "-I$ENV{PCP_TOPDIR}/src/include/pcp -I/usr/include/pcp";
|
|
|
|
- $libs = ["-L$ENV{PCP_TOPDIR}/src/libpcp_mmv/src -L$ENV{PCP_TOPDIR}/src/libpcp/src -lpcp_mmv -lpcp"];
|
|
|
|
+ $libs = ["-lpcp_mmv -lpcp"];
|
|
|
|
}
|
|
|
|
if ($ENV{TARGET_OS} eq "darwin") {
|
|
|
|
# standard ones, minus -arch ppc
|
|
|
|
diff --git a/src/perl/PMDA/Makefile.PL b/src/perl/PMDA/Makefile.PL
|
2022-05-29 18:56:24 +00:00
|
|
|
index d5c44615a..e2260c4b5 100644
|
2018-09-08 14:50:14 +00:00
|
|
|
--- a/src/perl/PMDA/Makefile.PL
|
|
|
|
+++ b/src/perl/PMDA/Makefile.PL
|
|
|
|
@@ -15,7 +15,7 @@ if ($ENV{TARGET_OS} eq "mingw") {
|
|
|
|
else {
|
|
|
|
$ldfrom = "local.o PMDA.o";
|
|
|
|
$inc = "-I$ENV{PCP_TOPDIR}/src/include/pcp -I/usr/include/pcp";
|
|
|
|
- $libs = ["-L$ENV{PCP_TOPDIR}/src/libpcp_pmda/src -L$ENV{PCP_TOPDIR}/src/libpcp/src -lpcp_pmda -lpcp"];
|
|
|
|
+ $libs = ["-lpcp_pmda -lpcp"];
|
|
|
|
}
|
|
|
|
if ($ENV{TARGET_OS} eq "darwin") {
|
|
|
|
# standard ones, minus -arch ppc
|
|
|
|
--
|
2022-05-29 18:56:24 +00:00
|
|
|
2.35.3
|
2018-09-08 14:50:14 +00:00
|
|
|
|