diff options
author | Olaf Faaland <[email protected]> | 2021-04-07 10:10:34 -0700 |
---|---|---|
committer | GitHub <[email protected]> | 2021-04-07 10:10:34 -0700 |
commit | cfd4a25fcec37beced07cec95a9dd72c1d3d5ba4 (patch) | |
tree | 1661bfc20fd56580be2e399e8e932e26e063da2b /rpm | |
parent | d5ef91af02667d8e7239fc3d9b026ff04d9429cb (diff) |
fix misplaced quotes in kmod-preamble
rpm/redhat/zfs-kmod.spec.in has a typo in the shell code that
creates the kmod-preamble file. This typo results in the
preamble file having the wrong name,
./SOURCES/kmod-preamblenObsoletes
and missing the Obsoletes clause that has become part of the name.
Because the filename is incorrect, the built package does not have
"obsoletes" or "conflicts" set.
Reviewed-by: Brian Behlendorf <[email protected]>
Signed-off-by: Olaf Faaland <[email protected]>
Closes #11851
Diffstat (limited to 'rpm')
-rw-r--r-- | rpm/redhat/zfs-kmod.spec.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/rpm/redhat/zfs-kmod.spec.in b/rpm/redhat/zfs-kmod.spec.in index 9bc756c5a..eb626e3f4 100644 --- a/rpm/redhat/zfs-kmod.spec.in +++ b/rpm/redhat/zfs-kmod.spec.in @@ -17,8 +17,8 @@ BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) # by generating a preamble text file which kmodtool can append to the spec file. %(/bin/echo -e "\ Requires: @PACKAGE@ = %{version}\n\ -Conflicts: @PACKAGE@-dkms\n\n" > %{_sourcedir}/kmod-preamble\n\ -Obsoletes: spl-kmod) +Conflicts: @PACKAGE@-dkms\n\ +Obsoletes: spl-kmod\n\n" > %{_sourcedir}/kmod-preamble) # LDFLAGS are not sanitized by arch/*/Makefile for these architectures. %ifarch ppc ppc64 ppc64le aarch64 |