]> git.openfabrics.org - ~vlad/ofed_scripts.git/commitdiff
Disable build32 flag on 32bit and ia64 platforms.
authorVladimir Sokolovsky <vlad@mellanox.co.il>
Tue, 4 Mar 2008 12:53:31 +0000 (14:53 +0200)
committerVladimir Sokolovsky <vlad@mellanox.co.il>
Tue, 4 Mar 2008 14:34:59 +0000 (16:34 +0200)
Signed-off-by: Vladimir Sokolovsky <vlad@mellanox.co.il>
install.pl

index 4e47047bbf0457a096f39530ab42fb5a03669254..3c8aeca035236b4b5e1a59f43013a85eee7ce267 100755 (executable)
@@ -1463,6 +1463,9 @@ sub supported32bit
 ###        print RED "\n32-bit libraries are not supported on this platform", RESET "\n" if (not $quiet);
 ###        return 0;
 ###    }
+    if ($arch =~ /i[0-9]86|ia64/) {
+        return 0;
+    }
     return 1
 }