aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Elliston <bje@gnu.org>2004-02-06 05:26:22 +0000
committerBen Elliston <bje@gnu.org>2004-02-06 05:26:22 +0000
commit6612f43d67833639f39daf47a7ff6c169b7b7920 (patch)
tree6186211a4c38b94c2f091f01d84c85dc545dedca
parent807fc052ef1c078945efb4763e919be5dbc57c06 (diff)
* site.tmpl: Tidy.
-rw-r--r--ChangeLog4
-rw-r--r--site.tmpl60
2 files changed, 31 insertions, 33 deletions
diff --git a/ChangeLog b/ChangeLog
index 9a054cb..293bfca 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,9 @@
2004-02-06 Ben Elliston <bje@wasabisystems.com>
+ * site.tmpl: Tidy.
+
+2004-02-06 Ben Elliston <bje@wasabisystems.com>
+
* INSTALL: Import latest version.
* depcomp: Likewise.
* install-sh: Likewise.
diff --git a/site.tmpl b/site.tmpl
index 5632964..2ced13a 100644
--- a/site.tmpl
+++ b/site.tmpl
@@ -1,37 +1,29 @@
+# site.tmpl -- Sample template for a global config file. -*- Tcl -*-
+# Written by Bob Manson <manson@cygnus.com>
#
-# site.tmpl -- Sample template for a global config file.
-# NOTE: This file contains mostly site specific
-# configuration data that is custom to Cygnus
-# Support. You'll have to change most of the
-# values to work at your site.
-# Written by manson@cygnus.com
-#
-
-#
-# transform -- transform a tool name to get the installed name. We only define
-# this if there wasn't one. This was the global config file can
-# override how the tool names are calculated.
-#
+# NOTE: This file contains mostly site specific configuration data
+# that is custom to Cygnus Support. You'll have to change most of the
+# values to work at your site.
-#
-# uncomment this if you wish to redefine the transform procedure
-#
+# transform -- transform a tool name to get the installed name. We
+# only define this if there wasn't one. This was the global config
+# file can override how the tool names are calculated.
-#if ![string match "transform" [info procs transform]] then {
-# proc transform { name } {
-# global target_triplet
-#
-# if [string match "" $target_triplet] then {
-# return $name
-# } else {
-# return ${target_triplet}-$name
-# }
-# }
-#}
+# Uncomment this if you wish to redefine the transform procedure.
+#
+# if ![string match "transform" [info procs transform]] then {
+# proc transform {name} {
+# global target_triplet
+# if [string match "" $target_triplet] then {
+# return $name
+# } else {
+# return ${target_triplet}-$name
+# }
+# }
+# }
-#
# Set a default target list for various target triplets.
-#
+
case "$target_triplet" in {
{ "hppa*-*-proelf*" } {
set target_list { winbond }
@@ -39,10 +31,12 @@ case "$target_triplet" in {
{ "i386-*-aout" } {
set target_list { i386-aout }
}
- { "m68k-mvme135-*" } { # Motorola MVME135 board running Bug monitor
+ { "m68k-mvme135-*" } {
+ # Motorola MVME135 board running Bug monitor
set target_list { "mvme135-bug" }
- }
- { "m68k-idp-*" "m68k-rom68k-*" } { # Motorola IDP board running rom68k monitor
+ }
+ { "m68k-idp-*" "m68k-rom68k-*" } {
+ # Motorola IDP board running rom68k monitor
set target_list "bozo"
- }
+ }
}