diff options
author | dduvall <none@none> | 2006-08-29 13:22:31 -0700 |
---|---|---|
committer | dduvall <none@none> | 2006-08-29 13:22:31 -0700 |
commit | 534f40222708923c9408e8cce31c88e75a977206 (patch) | |
tree | 4212f31d0baf7f626f7994a53ba333c1b13b253d /usr/src/tools/scripts/checkpaths.sh | |
parent | b19a79ec1a527828a60c4d325ccd8dcbeb2b2e8b (diff) | |
download | illumos-joyent-534f40222708923c9408e8cce31c88e75a977206.tar.gz |
backout 6455242/6460124/6463720/6455242: needs more work
Diffstat (limited to 'usr/src/tools/scripts/checkpaths.sh')
-rw-r--r-- | usr/src/tools/scripts/checkpaths.sh | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/usr/src/tools/scripts/checkpaths.sh b/usr/src/tools/scripts/checkpaths.sh index 965595ed74..723ee14219 100644 --- a/usr/src/tools/scripts/checkpaths.sh +++ b/usr/src/tools/scripts/checkpaths.sh @@ -19,12 +19,11 @@ # # CDDL HEADER END # - # # Copyright 2006 Sun Microsystems, Inc. All rights reserved. # Use is subject to license terms. # -# ident "%Z%%M% %I% %E% SMI" +#ident "%Z%%M% %I% %E% SMI" # Quis custodiet ipsos custodies? @@ -68,8 +67,8 @@ fi for ROOT in $rootlist do case "$ROOT" in - *sparc|*sparc-nd) arch=sparc;; - *i386|*i386-nd) arch=i386;; + *sparc) arch=sparc;; + *i386) arch=i386;; *) echo "$ROOT has unknown architecture." >&2 exit 1 |