2 Feb
2011
2 Feb
'11
1:06 p.m.
Date: Wednesday, February 2, 2011 @ 08:06:28 Author: rtoy Path: /project/cmucl/cvsroot/src/tools Modified: build-all.sh Recognize i86pc from uname -m. --------------+ build-all.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Index: src/tools/build-all.sh diff -u src/tools/build-all.sh:1.3 src/tools/build-all.sh:1.4 --- src/tools/build-all.sh:1.3 Fri Jan 7 18:43:58 2011 +++ src/tools/build-all.sh Wed Feb 2 08:06:28 2011 @@ -96,7 +96,7 @@ } case `uname -m` in - i386*|x86*) buildx86 ;; + i386*|x86*|i86pc) buildx86 ;; sun*) buildsun4 ;; *) echo "Unsupported architecture: `uname -m`" ;; esac