summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorrillig <rillig@NetBSD.org>2020-07-26 09:17:24 +0000
committerrillig <rillig@NetBSD.org>2020-07-26 09:17:24 +0000
commitea91f264afbb51b495798e1f9fc2a9eef4a8ea0e (patch)
treef507d800d246e878e958df9a4b919ec0a0ca433d
parent5639612d462b03662e91d793fa9c5df86efc526d (diff)
make(1): remove references to the removed lst.lib
-rwxr-xr-xbuild.sh8
-rwxr-xr-xtools/make/buildmake.sh.in4
2 files changed, 6 insertions, 6 deletions
diff --git a/build.sh b/build.sh
index ed4de0eabf8..17c0bf82c77 100755
--- a/build.sh
+++ b/build.sh
@@ -1,5 +1,5 @@
#! /usr/bin/env sh
-# $NetBSD: build.sh,v 1.342 2020/06/30 21:22:19 riastradh Exp $
+# $NetBSD: build.sh,v 1.343 2020/07/26 09:17:24 rillig Exp $
#
# Copyright (c) 2001-2011 The NetBSD Foundation, Inc.
# All rights reserved.
@@ -1664,7 +1664,7 @@ rebuildmake()
{
make="$(print_tooldir_make)"
if [ -n "${make}" ] && [ -x "${make}" ]; then
- for f in usr.bin/make/*.[ch] usr.bin/make/lst.lib/*.[ch]; do
+ for f in usr.bin/make/*.[ch]; do
if [ "${f}" -nt "${make}" ]; then
statusmsg "${make} outdated" \
"(older than ${f}), needs building."
@@ -1698,7 +1698,7 @@ rebuildmake()
bomb "Build of ${toolprefix}make failed"
make="${tmpdir}/${toolprefix}make"
${runcmd} cd "${TOP}"
- ${runcmd} rm -f usr.bin/make/*.o usr.bin/make/lst.lib/*.o
+ ${runcmd} rm -f usr.bin/make/*.o
done_rebuildmake=true
}
@@ -1961,7 +1961,7 @@ createmakewrapper()
eval cat <<EOF ${makewrapout}
#! ${HOST_SH}
# Set proper variables to allow easy "make" building of a NetBSD subtree.
-# Generated from: \$NetBSD: build.sh,v 1.342 2020/06/30 21:22:19 riastradh Exp $
+# Generated from: \$NetBSD: build.sh,v 1.343 2020/07/26 09:17:24 rillig Exp $
# with these arguments: ${_args}
#
diff --git a/tools/make/buildmake.sh.in b/tools/make/buildmake.sh.in
index 8a65e79567f..d9ba0ec5099 100755
--- a/tools/make/buildmake.sh.in
+++ b/tools/make/buildmake.sh.in
@@ -1,5 +1,5 @@
#! /bin/sh
-# $NetBSD: buildmake.sh.in,v 1.15 2020/06/13 11:39:43 lukem Exp $
+# $NetBSD: buildmake.sh.in,v 1.16 2020/07/26 09:17:24 rillig Exp $
#
# buildmake.sh.in - Autoconf-processed shell script for building make(1).
#
@@ -28,7 +28,7 @@ docmd () {
$3 || exit 1
}
-for f in $MKSRCDIR/*.c $MKSRCDIR/lst.lib/*.c; do
+for f in $MKSRCDIR/*.c; do
docmd "compile " "$f" "${_CC} ${_CFLAGS} -c $f"
done