> That's ok, i grab the kernel source package and rebuild it from there.
> Rebuilding the RPM simply takes too_long(tm).

Do not build everything:

%{?_without_up: %{expand: %%define build_up 0}}
%{?_without_smp: %{expand: %%define build_smp 0}}
%{?_without_enterprise: %{expand: %%define build_enterprise 0}}
%{?_without_kgcc: %{expand: %%define build_kgcc 0}}
%{?_without_kdb: %{expand: %%define build_kdb 0}}
%{?_without_doc: %{expand: %%define build_doc 0}}
%{?_without_source: %{expand: %%define build_source 0}}

%{?_with_up: %{expand: %%define build_up 1}}
%{?_with_smp: %{expand: %%define build_smp 1}}
%{?_with_enterprise: %{expand: %%define build_enterprise 1}}
%{?_with_kgcc: %{expand: %%define build_kgcc 1}}
%{?_with_kdb: %{expand: %%define build_kdb 1}}
%{?_with_doc: %{expand: %%define build_doc 1}}
%{?_with_source: %{expand: %%define build_source 1}}

Reply via email to