-Fix genimage support of 32-bit x86, addressing problem 1953892

git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@1223 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd
This commit is contained in:
jbjohnso 2008-04-29 17:51:53 +00:00
parent 7df53fb26e
commit 424400a794

View File

@ -14,6 +14,9 @@ my $netdriver;
my @yumdirs;
my $arch = `uname -m`;
chomp($arch);
if ($arch =~ /i.86$/) {
$arch = x86;
}
my %libhash;
my @filestoadd;
my $profile;