summaryrefslogtreecommitdiff
path: root/tools/make
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 /tools/make
parent5639612d462b03662e91d793fa9c5df86efc526d (diff)
make(1): remove references to the removed lst.lib
Diffstat (limited to 'tools/make')
-rwxr-xr-xtools/make/buildmake.sh.in4
1 files changed, 2 insertions, 2 deletions
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