mirror of
https://git.yoctoproject.org/poky
synced 2026-09-15 15:49:32 +02:00
The dnf stack is written and tested against rpm 4.x. So if we want to use dnf for packaging, we should also use rpm 4 - there's simply too much work involved in making rpm 5 work with it due to significant API differences, and supporting that going forward. (From OE-Core rev: 2358e786ec8d1199d90e181eb5d8d00816f669b4) Signed-off-by: Alexander Kanavin <alexander.kanavin@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
32 lines
1.0 KiB
Diff
32 lines
1.0 KiB
Diff
From d42ece6fa15b98d7f9221b90b85b78631df2c0a0 Mon Sep 17 00:00:00 2001
|
|
From: Alexander Kanavin <alex.kanavin@gmail.com>
|
|
Date: Tue, 14 Feb 2017 13:51:19 +0200
|
|
Subject: [PATCH] When nice value cannot be reset, issue a notice instead of a
|
|
warning
|
|
|
|
Otherwise build logs on the autobuilder get very clutter, as it
|
|
doesn't allow the nice value to be reset for some reason.
|
|
|
|
Upstream-Status: Inappropriate [oe specific]
|
|
Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
|
|
---
|
|
lib/rpmscript.c | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/lib/rpmscript.c b/lib/rpmscript.c
|
|
index 5e1e99906..3975aead8 100644
|
|
--- a/lib/rpmscript.c
|
|
+++ b/lib/rpmscript.c
|
|
@@ -347,7 +347,7 @@ static rpmRC runExtScript(rpmPlugins plugins, ARGV_const_t prefixes,
|
|
int ret;
|
|
ret = setpriority(PRIO_PROCESS, 0, 0);
|
|
if (ret == -1) {
|
|
- rpmlog(RPMLOG_WARNING, _("Unable to reset nice value: %s"),
|
|
+ rpmlog(RPMLOG_NOTICE, _("Unable to reset nice value: %s\n"),
|
|
strerror(errno));
|
|
}
|
|
|
|
--
|
|
2.11.0
|
|
|