Skip to content

Commit

Permalink
Fix erofs requires in spec
Browse files Browse the repository at this point in the history
erofs-utils for SUSE only exists in Tumbleweed. The
former conditon would also add the requirement for ALP
and SLFO which is wrong. This commit fixes it
  • Loading branch information
schaefi committed Oct 23, 2024
1 parent f525c0f commit 7cfcb93
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions package/python-kiwi-spec-template
Original file line number Diff line number Diff line change
Expand Up @@ -291,15 +291,15 @@ Provides: kiwi-filesystem:ext3
Provides: kiwi-filesystem:ext4
Provides: kiwi-filesystem:squashfs
Provides: kiwi-filesystem:xfs
%if ! (0%{?suse_version} && 0%{?suse_version} < 1600)
%if ! (0%{?suse_version} && 0%{?suse_version} <= 1600)
Provides: kiwi-filesystem:erofs
Provides: kiwi-image:erofs
%endif
%endif
Requires: dosfstools
Requires: e2fsprogs
Requires: xfsprogs
%if ! (0%{?suse_version} && 0%{?suse_version} < 1600)
%if ! (0%{?suse_version} && 0%{?suse_version} <= 1600)
Requires: erofs-utils
%endif
%if 0%{?suse_version}
Expand Down

0 comments on commit 7cfcb93

Please sign in to comment.