Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/distrib/sets Use $have_gcc3 rather than $use_tools_toolchain,



details:   https://anonhg.NetBSD.org/src/rev/8df6c28ef82d
branches:  trunk
changeset: 556197:8df6c28ef82d
user:      tsutsui <tsutsui%NetBSD.org@localhost>
date:      Tue Dec 09 15:42:31 2003 +0000

description:
Use $have_gcc3 rather than $use_tools_toolchain,
which isn't set by sets.defaults.

diffstat:

 distrib/sets/sets.subr |  8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diffs (53 lines):

diff -r 88ee2019d6dd -r 8df6c28ef82d distrib/sets/sets.subr
--- a/distrib/sets/sets.subr    Tue Dec 09 15:19:33 2003 +0000
+++ b/distrib/sets/sets.subr    Tue Dec 09 15:42:31 2003 +0000
@@ -9,6 +9,7 @@
 #
 # Environment
 #
+#      have_gcc3
 #      lintlibs
 #      lkm
 #      machine
@@ -18,7 +19,6 @@
 #      shlib
 #      stlib
 #      toolchain_missing
-#      use_tools_toolchain
 #
 list_set_files () {
        for setname; do
@@ -42,7 +42,7 @@
 # In each file, a record consists of a path and a System Package name,
 # separated by whitespace. E.g.,
 #
-#      # $NetBSD: sets.subr,v 1.5 2003/11/25 07:19:46 dyoung Exp $
+#      # $NetBSD: sets.subr,v 1.6 2003/12/09 15:42:31 tsutsui Exp $
 #      .                       base-sys-root
 #      ./altroot               base-sys-root
 #      ./bin                   base-sys-root
@@ -56,6 +56,7 @@
 #
 # Environment
 #
+#      have_gcc3
 #      lintlibs
 #      lkm
 #      machine
@@ -65,7 +66,6 @@
 #      shlib
 #      stlib
 #      toolchain_missing
-#      use_tools_toolchain
 #
 list_set_lists () {
        setname=$1
@@ -115,7 +115,7 @@
                fi
        fi
        if [ "$toolchain_missing" != "yes" ]; then
-               if [ "$use_tools_toolchain" != "yes" ]; then
+               if [ "$have_gcc3" = "yes" ]; then
                        if [ -f $setd/lists/$setname/gcc.mi ]; then
                                echo $setd/lists/$setname/gcc.mi
                        fi



Home | Main Index | Thread Index | Old Index