Skip to content

Commit

Permalink
Merge pull request #258 from penn5/patch-1
Browse files Browse the repository at this point in the history
Fix user_namespace support detection
  • Loading branch information
rhatdan committed Jun 22, 2023
2 parents 8b8a5fe + f9787d6 commit b2e8f90
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rpm/container-selinux.spec
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
%endif

# https://github.com/containers/container-selinux/issues/203
%if 0%{?fedora} <= 37 || 0%{?rhel} <= 9
%if %{!defined fedora} && %{!defined rhel} || %{defined fedora} && 0%{?fedora} <= 37 || %{defined rhel} && 0%{?rhel} <= 9
%bcond_without no_user_namespace
%else
%bcond_with no_user_namespace
Expand Down

0 comments on commit b2e8f90

Please sign in to comment.