Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package elfutils for openSUSE:Factory checked in at 2022-05-19 22:48:55 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/elfutils (Old) and /work/SRC/openSUSE:Factory/.elfutils.new.1538 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "elfutils" Thu May 19 22:48:55 2022 rev:97 rq:977057 version:0.187 Changes: -------- --- /work/SRC/openSUSE:Factory/elfutils/elfutils-debuginfod.changes 2022-05-05 23:04:25.825410282 +0200 +++ /work/SRC/openSUSE:Factory/.elfutils.new.1538/elfutils-debuginfod.changes 2022-05-19 22:48:59.986310263 +0200 @@ -1,0 +2,6 @@ +Fri May 13 12:16:45 UTC 2022 - Martin Li??ka <mli...@suse.cz> + +- Add config-Move-the-2-dev-null-inside-the-sh-c-quotes-fo.patch + in order to fix boo#1199265. + +------------------------------------------------------------------- New: ---- config-Move-the-2-dev-null-inside-the-sh-c-quotes-fo.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ elfutils-debuginfod.spec ++++++ --- /var/tmp/diff_new_pack.aLFU4K/_old 2022-05-19 22:49:04.418315943 +0200 +++ /var/tmp/diff_new_pack.aLFU4K/_new 2022-05-19 22:49:04.422315948 +0200 @@ -29,7 +29,8 @@ Source2: elfutils.changes Source3: elfutils.keyring Source4: %{name}.sysusers -Patch2: harden_debuginfod.service.patch +Patch1: harden_debuginfod.service.patch +Patch2: config-Move-the-2-dev-null-inside-the-sh-c-quotes-fo.patch BuildRequires: autoconf BuildRequires: automake BuildRequires: bison ++++++ config-Move-the-2-dev-null-inside-the-sh-c-quotes-fo.patch ++++++ >From f1252e4dbe781f75d806ce0b990779548eeeb7a9 Mon Sep 17 00:00:00 2001 From: Mark Wielaard <m...@klomp.org> Date: Tue, 3 May 2022 17:48:55 +0200 Subject: [PATCH] config: Move the 2>/dev/null inside the sh -c '' quotes for profile.csh. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit csh/tcsh would warn about "Ambiguous output redirect" if not done inside the sh -c command. Fix-by: ?????? <nabijaczlew...@nabijaczleweli.xyz> https://bugzilla.redhat.com/show_bug.cgi?id=2080957 Signed-off-by: Mark Wielaard <m...@klomp.org> --- config/ChangeLog | 4 ++++ config/profile.csh.in | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/config/ChangeLog b/config/ChangeLog index 51415258..cfb37b42 100644 --- a/config/ChangeLog +++ b/config/ChangeLog @@ -1,3 +1,7 @@ +2022-05-03 Mark Wielaard <m...@klomp.org> + + * profile.csh.in: Move the 2>/dev/null inside the sh -c '' quotes. + 2022-04-25 Mark Wielaard <m...@klomp.org> * elfutils.spec.in: Update for 0.187. diff --git a/config/profile.csh.in b/config/profile.csh.in index 012e243a..74c20c99 100644 --- a/config/profile.csh.in +++ b/config/profile.csh.in @@ -6,7 +6,7 @@ if (! $?DEBUGINFOD_URLS) then set prefix="@prefix@" - set DEBUGINFOD_URLS=`sh -c 'cat "$0"/*.urls; :' "@sysconfdir@/debuginfod" 2>/dev/null | tr '\n' ' '` + set DEBUGINFOD_URLS=`sh -c 'cat "$0"/*.urls 2>/dev/null; :' "@sysconfdir@/debuginfod" | tr '\n' ' '` if ( "$DEBUGINFOD_URLS" != "" ) then setenv DEBUGINFOD_URLS "$DEBUGINFOD_URLS" else -- 2.36.1