From e41854d1249cb6947762d14a88414e313803c3c6 Mon Sep 17 00:00:00 2001 From: Vladimir Sokolovsky Date: Tue, 4 Mar 2008 14:53:31 +0200 Subject: [PATCH] Disable build32 flag on 32bit and ia64 platforms. Signed-off-by: Vladimir Sokolovsky --- install.pl | 3 +++ 1 file changed, 3 insertions(+) diff --git a/install.pl b/install.pl index 4e47047..3c8aeca 100755 --- a/install.pl +++ b/install.pl @@ -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 } -- 2.46.0