Source-Changes-HG archive

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

[src/trunk]: src/bin/sh Drop the lex library - hasn't been needed since the a...



details:   https://anonhg.NetBSD.org/src/rev/65f1b03b01ba
branches:  trunk
changeset: 823945:65f1b03b01ba
user:      kre <kre%NetBSD.org@localhost>
date:      Mon May 15 18:34:56 2017 +0000

description:
Drop the lex library - hasn't been needed since the airthmetic
upgrade a while ago (this should make no difference to anything
other than a minor - very minor - build time speedup, ld is
smart enough to relaise that nothing from the lex library was
needed, and the executable contains no reference to it, even
befor ethis change.)

diffstat:

 bin/sh/Makefile |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (20 lines):

diff -r b0d352397534 -r 65f1b03b01ba bin/sh/Makefile
--- a/bin/sh/Makefile   Mon May 15 16:09:09 2017 +0000
+++ b/bin/sh/Makefile   Mon May 15 18:34:56 2017 +0000
@@ -1,4 +1,4 @@
-#      $NetBSD: Makefile,v 1.106 2017/05/14 11:25:09 kre Exp $
+#      $NetBSD: Makefile,v 1.107 2017/05/15 18:34:56 kre Exp $
 #      @(#)Makefile    8.4 (Berkeley) 5/5/95
 
 .include <bsd.own.mk>
@@ -14,8 +14,8 @@
 
 DPSRCS+=${GENHDRS}
 
-LDADD+=        -ll -ledit -lterminfo
-DPADD+=        ${LIBL} ${LIBEDIT} ${LIBTERMINFO}
+LDADD+=        -ledit -lterminfo
+DPADD+=        ${LIBEDIT} ${LIBTERMINFO}
 
 # Environment for scripts executed during build.
 SCRIPT_ENV= \



Home | Main Index | Thread Index | Old Index