diff options
author | mbr <mbr@FreeBSD.org> | 2003-08-13 09:29:47 +0000 |
---|---|---|
committer | mbr <mbr@FreeBSD.org> | 2003-08-13 09:29:47 +0000 |
commit | d099e46fcd6e887e5d05db0c28464cd5e40baec9 (patch) | |
tree | 00662af3be00af87599f9e13ffaed6caf1af9cc5 /net/citrix_ica | |
parent | 02e5278b9b6d69d93b428462667f66a241d3a174 (diff) | |
download | FreeBSD-ports-d099e46fcd6e887e5d05db0c28464cd5e40baec9.zip FreeBSD-ports-d099e46fcd6e887e5d05db0c28464cd5e40baec9.tar.gz |
Since uname -m can now report any i[3456]86 values, change the script
to work with this.
Submitted by: Andrew Thompson <andy@fud.org.nz>
Diffstat (limited to 'net/citrix_ica')
-rw-r--r-- | net/citrix_ica/files/patch-setupwfc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/citrix_ica/files/patch-setupwfc b/net/citrix_ica/files/patch-setupwfc index 096f3c1..0d1b30e 100644 --- a/net/citrix_ica/files/patch-setupwfc +++ b/net/citrix_ica/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 |