Skip to content

packaging: build the -static subpkg on 64bit arches only #198

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Aug 2, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions make-srpm.sh
Original file line number Diff line number Diff line change
Expand Up @@ -90,8 +90,8 @@ cat > "$SPEC" << EOF
%bcond_without python2
%endif

# build csdiff-static on RHEL-10+ and Fedora
%if 0%{?rhel} > 9 || 0%{?fedora}
# build csdiff-static on 64bit RHEL-10+ and Fedora
%if 0%{?__isa_bits} == 64 && (0%{?rhel} > 9 || 0%{?fedora})
%bcond_without static
%else
%bcond_with static
Expand Down
Loading