mirror of
https://git.yoctoproject.org/poky
synced 2026-03-19 13:49:41 +01:00
Update rdepends generator to account for new version specifiers
(v{version} instead of just {version}) and exclude a few more
external modules detected at runtime.
Adjust musl configuration to set custom LC_ALL handling
(musl doesn't follow glibc in that, see the last few comments here:
https://github.com/Perl/perl5/issues/22375 ).
Adjust ptest packaging to add a dummy Makefile for 'make perl
releases' test (otherwise the packaging specifically excludes makefiles).
(From OE-Core rev: 1c1cfae53564c836555ace926295cf88109b8c9f)
Signed-off-by: Alexander Kanavin <alex@linutronix.de>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
34 lines
1.2 KiB
Diff
34 lines
1.2 KiB
Diff
From 322972384e0795be339252f7cf9a318dc759b51e Mon Sep 17 00:00:00 2001
|
|
From: Robert Yang <liezhi.yang@windriver.com>
|
|
Date: Fri, 18 Feb 2022 09:44:26 +0000
|
|
Subject: [PATCH] cpan/Sys-Syslog/Makefile.PL: Fix _PATH_LOG for deterministic
|
|
|
|
It checks host's path such as /dev/log and uses it, this doesn't make sense for
|
|
cross build, and it causes undeterministic, for example, the contianer os
|
|
usually doesn't have /dev/log which leads to a different build result since
|
|
other host usually has /dev/log, so make it always use the default value to fix
|
|
the issue.
|
|
|
|
Submitted a ticket to upstream: https://rt.cpan.org/Ticket/Display.html?id=141612
|
|
|
|
Upstream-Status: Inappropriate [OE specific]
|
|
|
|
Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
|
|
---
|
|
cpan/Sys-Syslog/Makefile.PL | 2 ++
|
|
1 file changed, 2 insertions(+)
|
|
|
|
diff --git a/cpan/Sys-Syslog/Makefile.PL b/cpan/Sys-Syslog/Makefile.PL
|
|
index d09ba69..d44e58c 100644
|
|
--- a/cpan/Sys-Syslog/Makefile.PL
|
|
+++ b/cpan/Sys-Syslog/Makefile.PL
|
|
@@ -130,6 +130,8 @@ else {
|
|
$_PATH_LOG = "";
|
|
}
|
|
|
|
+# OE specific
|
|
+$_PATH_LOG = "";
|
|
|
|
# if possible, generate the code that handles the constants with
|
|
# ExtUtils::Constant, otherwise use cached copy in fallback/
|