From dc1b413b2c742a1d69505cea1c93d3ba421d7801 Mon Sep 17 00:00:00 2001 From: Olivier Blin Date: Mon, 17 Dec 2007 22:42:11 +0000 Subject: install SMP packages when "match_all_hardware" option is set --- perl-install/install/NEWS | 2 ++ perl-install/install/any.pm | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) (limited to 'perl-install/install') diff --git a/perl-install/install/NEWS b/perl-install/install/NEWS index 2a8d1dd63..4d813e66b 100644 --- a/perl-install/install/NEWS +++ b/perl-install/install/NEWS @@ -1,3 +1,5 @@ +- install SMP packages when "match_all_hardware" option is set + Version 10.6.1 - 12 December 2007, by Pascal "Pixel" Rigaux - ensure failing to build mdkinst.sqfs is a fatal error diff --git a/perl-install/install/any.pm b/perl-install/install/any.pm index 6c9d60889..4f01bff3b 100644 --- a/perl-install/install/any.pm +++ b/perl-install/install/any.pm @@ -538,7 +538,7 @@ sub rpmsrate_always_flags { $rpmsrate_flags_chosen->{PCMCIA} = 1 if $o->{match_all_hardware} || detect_devices::hasPCMCIA(); $rpmsrate_flags_chosen->{HIGH_SECURITY} = 1 if $o->{security} > 3; $rpmsrate_flags_chosen->{BIGMEM} = 1 if detect_devices::BIGMEM(); - $rpmsrate_flags_chosen->{SMP} = 1 if detect_devices::hasSMP(); + $rpmsrate_flags_chosen->{SMP} = 1 if $o->{match_all_hardware} || detect_devices::hasSMP(); $rpmsrate_flags_chosen->{CDCOM} = 1 if any { $_->{name} =~ /commercial/i } install::media::allMediums($o->{packages}); $rpmsrate_flags_chosen->{'3D'} = 1 if $o->{match_all_hardware} || -- cgit v1.2.1