diff options
author | Thorsten Leemhuis <fedora@leemhuis.info> | 2015-12-10 20:50:48 +0100 |
---|---|---|
committer | Josh Boyer <jwboyer@fedoraproject.org> | 2015-12-14 14:53:19 -0500 |
commit | 36d3e68c7ecf16466f636439f0c1fd96d3a90995 (patch) | |
tree | 476ca58706592661b9de2fab2cdc182851457b4e | |
parent | ce38e61b579522d3430a38f74ae58cf954a5c6bc (diff) | |
download | kernel-36d3e68c7ecf16466f636439f0c1fd96d3a90995.tar.gz kernel-36d3e68c7ecf16466f636439f0c1fd96d3a90995.tar.xz kernel-36d3e68c7ecf16466f636439f0c1fd96d3a90995.zip |
BuildRequire openssl openssl-devel on %{ix86} x86_64
Lo! Consider applying below patch for rawhide and the stabilization
branch. It fixes a build problem in mock on %{ix86} x86_64 when setting
%signmodules to 0 in kernel.spec. The build fails because Linux since
4.3-rc1 needs openssl and openssl-devel when CONFIG_MODULE_SIG is set,
which is the done by config-x86-generic in Fedora. CU, thl
-rw-r--r-- | kernel.spec | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/kernel.spec b/kernel.spec index ae0b194d0..e111c56ba 100644 --- a/kernel.spec +++ b/kernel.spec @@ -388,8 +388,12 @@ BuildRequires: rpm-build, elfutils %define debuginfo_args --strict-build-id -r %endif -%if %{signmodules} +%ifarch %{ix86} x86_64 +# MODULE_SIG is enabled in config-x86-generic and needs these: BuildRequires: openssl openssl-devel +%endif + +%if %{signmodules} BuildRequires: pesign >= 0.10-4 %endif |