* site.tmpl: Delete.
authorBen Elliston <bje@gnu.org>
Sun, 3 Apr 2016 21:06:37 +0000 (07:06 +1000)
committerBen Elliston <bje@gnu.org>
Sun, 3 Apr 2016 21:06:37 +0000 (07:06 +1000)
* Makefile.am (EXTRA_DIST): Remove site.tmpl.
* Makefile.in: Regenerate.

ChangeLog
Makefile.am
Makefile.in
site.tmpl [deleted file]

index 22454d6..a4bfa0d 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2016-04-04  Ben Elliston  <bje@gnu.org>
+
+       * site.tmpl: Delete.
+       * Makefile.am (EXTRA_DIST): Remove site.tmpl.
+       * Makefile.in: Regenerate.
+
 2016-04-03  Ben Elliston  <bje@gnu.org>
 
        * doc/dejagnu.texi: More overhauling.
index aaaca55..2573f30 100644 (file)
@@ -21,7 +21,7 @@
 AUTOMAKE_OPTIONS = dejagnu
 export DEJAGNU
 
-EXTRA_DIST = ChangeLog-1992 MAINTAINERS runtest site.tmpl \
+EXTRA_DIST = ChangeLog-1992 MAINTAINERS runtest \
        $(pkgdata_DATA) $(config_DATA) $(baseboard_DATA) \
        $(TESTSUITE_FILES) $(XML) $(CONTRIB)
 
index 323f8e8..5ffa261 100644 (file)
@@ -363,7 +363,7 @@ top_build_prefix = @top_build_prefix@
 top_builddir = @top_builddir@
 top_srcdir = @top_srcdir@
 AUTOMAKE_OPTIONS = dejagnu
-EXTRA_DIST = ChangeLog-1992 MAINTAINERS runtest site.tmpl \
+EXTRA_DIST = ChangeLog-1992 MAINTAINERS runtest \
        $(pkgdata_DATA) $(config_DATA) $(baseboard_DATA) \
        $(TESTSUITE_FILES) $(XML) $(CONTRIB)
 
diff --git a/site.tmpl b/site.tmpl
deleted file mode 100644 (file)
index 2ced13a..0000000
--- a/site.tmpl
+++ /dev/null
@@ -1,42 +0,0 @@
-# site.tmpl -- Sample template for a global config file. -*- Tcl -*-
-# Written by Bob Manson <manson@cygnus.com>
-#
-# 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.
-
-# 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.
-
-# 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 }
-    }
-    { "i386-*-aout" } {
-       set target_list { i386-aout }
-    }
-    { "m68k-mvme135-*" } {
-       # Motorola MVME135 board running Bug monitor
-       set target_list  { "mvme135-bug" }
-    }
-    { "m68k-idp-*" "m68k-rom68k-*" } {
-       # Motorola IDP board running rom68k monitor
-       set target_list "bozo"
-    }
-}