SHA256
1
0
forked from pool/xen

hide CC=gcc-4.6 properly

OBS-URL: https://build.opensuse.org/package/show/Virtualization/xen?expand=0&rev=138
This commit is contained in:
Olaf Hering 2011-08-15 14:46:23 +00:00 committed by Git OBS Bridge
parent 2d4e82ad73
commit 1e7e3e1850

View File

@ -916,7 +916,11 @@ export CFLAGS="$RPM_OPT_FLAGS"
%if %{?with_dom0_support}0
# EFI
%ifarch x86_64
make -C xen install CC=gcc-4.6 max_phys_cpus=%{max_cpus} debug=n crash_debug=n DESTDIR=$RPM_BUILD_ROOT %{?_smp_mflags}
make -C xen install \
%if %{?with_gcc46}0
CC=gcc-4.6 \
%endif
max_phys_cpus=%{max_cpus} debug=n crash_debug=n DESTDIR=$RPM_BUILD_ROOT %{?_smp_mflags}
make -C xen clean
%endif
install_xen()