Add missing i386 to the x86 arch_list
authorMarkus Lehtonen <markus.lehtonen@linux.intel.com>
Tue, 25 Sep 2012 11:14:43 +0000 (14:14 +0300)
committerMarkus Lehtonen <markus.lehtonen@linux.intel.com>
Tue, 25 Sep 2012 11:15:39 +0000 (14:15 +0300)
Otherwise some builds with deps to .i386 rpms may fail.

Signed-off-by: Markus Lehtonen <markus.lehtonen@linux.intel.com>
depanneur

index a2c2367a30384559615b608aef50c7d12aa7866f..8b1e698765e0271f5034c6e43ff66d5223ab5ff9 100755 (executable)
--- a/depanneur
+++ b/depanneur
@@ -302,7 +302,7 @@ my $package_path = "";
 # FIXME
 
 my @arm_archs = ( "armv7el" , "armv7l", "noarch");
-my @ix86_archs = ("i586", "i686", "noarch");
+my @ix86_archs = ("i386", "i586", "i686", "noarch");
 my @archs = ();
 if ( $arch eq "i586" ) {
     @archs = @ix86_archs;