blob: 63815d44fb6aa7e19bf96cea849cc85c87dfaf37 [file] [log] [blame]
Andrew Geissler9aee5002022-03-30 16:27:02 +00001From a73fff1fcf0def4ce93964f1b63fe3ad0967259d Mon Sep 17 00:00:00 2001
2From: Robert Yang <liezhi.yang@windriver.com>
3Date: Fri, 18 Feb 2022 09:44:26 +0000
4Subject: [PATCH] cpan/Sys-Syslog/Makefile.PL: Fix _PATH_LOG for deterministic
5
6It checks host's path such as /dev/log and uses it, this doesn't make sense for
7cross build, and it causes undeterministic, for example, the contianer os
8usually doesn't have /dev/log which leads to a different build result since
9other host usually has /dev/log, so make it always use the default value to fix
10the issue.
11
12Submitted a ticket to upstream: https://rt.cpan.org/Ticket/Display.html?id=141612
13
14Upstream-Status: Inappropriate [OE specific]
15
16Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
17---
18 cpan/Sys-Syslog/Makefile.PL | 2 ++
19 1 file changed, 2 insertions(+)
20
21diff --git a/cpan/Sys-Syslog/Makefile.PL b/cpan/Sys-Syslog/Makefile.PL
22index d09ba69..d44e58c 100644
23--- a/cpan/Sys-Syslog/Makefile.PL
24+++ b/cpan/Sys-Syslog/Makefile.PL
25@@ -130,6 +130,8 @@ else {
26 $_PATH_LOG = "";
27 }
28
29+# OE specific
30+$_PATH_LOG = "";
31
32 # if possible, generate the code that handles the constants with
33 # ExtUtils::Constant, otherwise use cached copy in fallback/
34--
352.31.1
36