diff options
author | kupfer <none@none> | 2007-05-03 16:04:05 -0700 |
---|---|---|
committer | kupfer <none@none> | 2007-05-03 16:04:05 -0700 |
commit | 4e5b757fbcf21077677360be274461dcd9064106 (patch) | |
tree | 3a5353aff37d2d3008613222146a3a86bed8f37d /usr/src/tools/scripts/checkpaths.sh | |
parent | 4d25c1d6097c545e02d2718b5cfa8e0e1845497e (diff) | |
download | illumos-joyent-4e5b757fbcf21077677360be274461dcd9064106.tar.gz |
6455242 nightly should be able to preserve all proto areas from a single build.
6467531 nightly(1) needs option to generate OpenSolaris delivery
--HG--
rename : usr/src/pkgdefs/SUNWftpu/copyright => usr/src/cmd/cmd-inet/usr.sbin/in.ftpd/LICENSE
Diffstat (limited to 'usr/src/tools/scripts/checkpaths.sh')
-rw-r--r-- | usr/src/tools/scripts/checkpaths.sh | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/usr/src/tools/scripts/checkpaths.sh b/usr/src/tools/scripts/checkpaths.sh index 723ee14219..0ec887157d 100644 --- a/usr/src/tools/scripts/checkpaths.sh +++ b/usr/src/tools/scripts/checkpaths.sh @@ -19,8 +19,9 @@ # # CDDL HEADER END # + # -# Copyright 2006 Sun Microsystems, Inc. All rights reserved. +# Copyright 2007 Sun Microsystems, Inc. All rights reserved. # Use is subject to license terms. # #ident "%Z%%M% %I% %E% SMI" @@ -67,8 +68,12 @@ fi for ROOT in $rootlist do case "$ROOT" in - *sparc) arch=sparc;; - *i386) arch=i386;; + *sparc|*sparc-nd) + arch=sparc + ;; + *i386|*i386-nd) + arch=i386 + ;; *) echo "$ROOT has unknown architecture." >&2 exit 1 |