Source-Changes-HG archive

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

[src/trunk]: src/share/mk Simplify the build of library archives by no longer...



details:   https://anonhg.NetBSD.org/src/rev/622eedfad255
branches:  trunk
changeset: 339407:622eedfad255
user:      joerg <joerg%NetBSD.org@localhost>
date:      Mon Jul 20 12:20:26 2015 +0000

description:
Simplify the build of library archives by no longer doing a topological
sort.

diffstat:

 share/mk/bsd.lib.mk |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (18 lines):

diff -r 8142de60b368 -r 622eedfad255 share/mk/bsd.lib.mk
--- a/share/mk/bsd.lib.mk       Mon Jul 20 06:34:29 2015 +0000
+++ b/share/mk/bsd.lib.mk       Mon Jul 20 12:20:26 2015 +0000
@@ -1,4 +1,4 @@
-#      $NetBSD: bsd.lib.mk,v 1.358 2015/06/04 06:01:24 mrg Exp $
+#      $NetBSD: bsd.lib.mk,v 1.359 2015/07/20 12:20:26 joerg Exp $
 #      @(#)bsd.lib.mk  8.3 (Berkeley) 4/22/94
 
 .include <bsd.init.mk>
@@ -542,7 +542,7 @@
 __archivebuild: .USE
        ${_MKTARGET_BUILD}
        rm -f ${.TARGET}
-       ${AR} ${_ARFL} ${.TARGET} `NM=${NM} ${LORDER} ${.ALLSRC:M*o} | ${TSORT}`
+       ${AR} ${_ARFL} ${.TARGET} ${.ALLSRC:M*o:O}
 .endif
 
 .if !target(__archiveinstall)



Home | Main Index | Thread Index | Old Index