Skip to content
Snippets Groups Projects
Commit 1a07c9ef authored by Giuseppe Lo Presti's avatar Giuseppe Lo Presti
Browse files

Disable server-side compilation on non x86_64 architectures. CASTOR server...

Disable server-side compilation on non x86_64 architectures. CASTOR server side needs Ceph, which is only available on x86_64.
parent 92dd2ff6
Branches
Tags
No related merge requests found
......@@ -6,12 +6,17 @@
# Partial compilations
#---------------------
%ifnarch x86_64
# server side is only supported on x86_64
%define compile_server 0
%else
# rpmbuild --define "clientonly 1" ...
%if 0%{?clientonly:1} > 0
%if 0%{?clientonly:1} > 0
%define compile_server 0
%else
%define compile_server @COMPILE_SERVER@
%endif
%endif
# Neutral packaging (for srpm)
#-----------------------------
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment