Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src make(1): remove references to the removed lst.lib
details: https://anonhg.NetBSD.org/src/rev/1d02fc324f17
branches: trunk
changeset: 936360:1d02fc324f17
user: rillig <rillig%NetBSD.org@localhost>
date: Sun Jul 26 09:17:24 2020 +0000
description:
make(1): remove references to the removed lst.lib
diffstat:
build.sh | 8 ++++----
tools/make/buildmake.sh.in | 4 ++--
2 files changed, 6 insertions(+), 6 deletions(-)
diffs (56 lines):
diff -r f8f68582f7ba -r 1d02fc324f17 build.sh
--- a/build.sh Sun Jul 26 08:20:22 2020 +0000
+++ b/build.sh Sun Jul 26 09:17:24 2020 +0000
@@ -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 @@
{
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 @@
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 @@
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 -r f8f68582f7ba -r 1d02fc324f17 tools/make/buildmake.sh.in
--- a/tools/make/buildmake.sh.in Sun Jul 26 08:20:22 2020 +0000
+++ b/tools/make/buildmake.sh.in Sun Jul 26 09:17:24 2020 +0000
@@ -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 @@
$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
Home |
Main Index |
Thread Index |
Old Index