* site.tmpl: Tidy.
authorBen Elliston <bje@gnu.org>
Fri, 6 Feb 2004 05:26:22 +0000 (05:26 +0000)
committerBen Elliston <bje@gnu.org>
Fri, 6 Feb 2004 05:26:22 +0000 (05:26 +0000)
ChangeLog
site.tmpl

index 9a054cb..293bfca 100644 (file)
--- 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.
index 5632964..2ced13a 100644 (file)
--- 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"
-     }
+    }
 }