From d099e46fcd6e887e5d05db0c28464cd5e40baec9 Mon Sep 17 00:00:00 2001 From: mbr Date: Wed, 13 Aug 2003 09:29:47 +0000 Subject: Since uname -m can now report any i[3456]86 values, change the script to work with this. Submitted by: Andrew Thompson --- net/citrix_xenapp/files/patch-setupwfc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'net/citrix_xenapp') diff --git a/net/citrix_xenapp/files/patch-setupwfc b/net/citrix_xenapp/files/patch-setupwfc index 096f3c155bff..0d1b30ea8bfa 100644 --- a/net/citrix_xenapp/files/patch-setupwfc +++ b/net/citrix_xenapp/files/patch-setupwfc @@ -5,7 +5,7 @@ # processor. We also assume that this is reported by uname -m # "ix86" where x is some number. - if uname -m | grep 86 2>&1 >/dev/null ;then -+ if uname -m | grep i386 2>&1 >/dev/null ;then ++ if uname -m | grep i[3456]86 2>&1 >/dev/null ;then PLATFORM=linuxx86 DISP_PLATFORM="Linux (x86)" elif uname -m | grep -i arm 2>&1 >/dev/null ;then -- cgit