From 494203d8f4d57d6daf1b825ebe02f2a9b1ffbda5a8b33d69a9d525e50ee1f53b Mon Sep 17 00:00:00 2001 From: Jason Sikes Date: Wed, 23 Jan 2019 18:36:12 +0000 Subject: [PATCH] Accepting request 668144 from home:bmwiedemann:branches:devel:libraries:c_c++ Do not run profiling in parallel for reproducible builds (boo#1040589) OBS-URL: https://build.opensuse.org/request/show/668144 OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/pcre2?expand=0&rev=33 --- pcre2.changes | 5 +++++ pcre2.spec | 3 ++- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/pcre2.changes b/pcre2.changes index 6e18687..1026d1d 100644 --- a/pcre2.changes +++ b/pcre2.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Wed Jan 23 12:25:38 UTC 2019 - Bernhard Wiedemann + +- Do not run profiling in parallel for reproducible builds (boo#1040589) + ------------------------------------------------------------------- Mon Jan 14 16:11:53 CET 2019 - kukuk@suse.de diff --git a/pcre2.spec b/pcre2.spec index dcf8fdd..d7de419 100644 --- a/pcre2.spec +++ b/pcre2.spec @@ -189,7 +189,8 @@ export LDFLAGS="-Wl,-z,relro,-z,now" %if 0%{?do_profiling} make %{?_smp_mflags} CFLAGS="%{optflags} %{cflags_profile_generate}" V=1 export LANG=POSIX - make %{?_smp_mflags} CFLAGS="%{optflags} %{cflags_profile_generate}" check + # do not run profiling in parallel for reproducible builds (boo#1040589 boo#1102408) + make CFLAGS="%{optflags} %{cflags_profile_generate}" check make %{?_smp_mflags} clean make %{?_smp_mflags} CFLAGS="%{optflags} %{cflags_profile_feedback}" V=1 %else