Check-in Number:
|
2529 | |
Date: |
2002-Sep-04 11:58:42 (local)
2002-Sep-04 09:58:42 (UTC) |
User: | ms |
Branch: | |
Comment: |
Please review. Added support for guessing the Darwin OS. |
Tickets: |
|
Inspections: |
|
Files: |
|
ossp-pkg/shtool/THANKS 1.22 -> 1.23
--- THANKS 2002/07/11 17:23:24 1.22
+++ THANKS 2002/09/04 09:58:42 1.23
@@ -29,6 +29,7 @@
o Peter Simons <simons@cys.de>
o Evgeny Stambulchik <fnevgeny@plasma-gate.weizmann.ac.il>
o Gopal Narayanan <gopal@fcrao1.phast.umass.edu>
+ o Miles Egan <miles@pixar.com>
...and all other shtool users who gave me feedback but I've forgot.
|
|
ossp-pkg/shtool/sh.guessos 1.21 -> 1.22
--- sh.guessos 2001/09/23 10:58:10 1.21
+++ sh.guessos 2002/09/04 09:58:42 1.22
@@ -210,6 +210,10 @@
esac
echo "${MACHINE}-apple-rhapsody${RELEASE}"; exit 0
;;
+ Darwin:*:*:*)
+ MACHINE=`uname -p`
+ echo "${MACHINE}-apple-darwin${RELEASE}"; exit 0
+ ;;
"Mac OS":*:*:*)
MACHINE=`uname -p`
echo "${MACHINE}-apple-macos${RELEASE}"; exit 0
|
|