From owner-svn-src-user@freebsd.org Sun Oct 18 01:30:25 2015 Return-Path: Delivered-To: svn-src-user@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 74024A10453 for ; Sun, 18 Oct 2015 01:30:25 +0000 (UTC) (envelope-from ngie@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 3ED1C19D8; Sun, 18 Oct 2015 01:30:25 +0000 (UTC) (envelope-from ngie@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t9I1UOwZ062787; Sun, 18 Oct 2015 01:30:24 GMT (envelope-from ngie@FreeBSD.org) Received: (from ngie@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t9I1UN8j062781; Sun, 18 Oct 2015 01:30:23 GMT (envelope-from ngie@FreeBSD.org) Message-Id: <201510180130.t9I1UN8j062781@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ngie set sender to ngie@FreeBSD.org using -f From: Garrett Cooper Date: Sun, 18 Oct 2015 01:30:23 +0000 (UTC) To: src-committers@freebsd.org, svn-src-user@freebsd.org Subject: svn commit: r289479 - in user/ngie/bug203673: bin/df bin/ls libexec/ftpd usr.bin/netstat usr.bin/procstat usr.bin/w X-SVN-Group: user MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-user@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: "SVN commit messages for the experimental " user" src tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 18 Oct 2015 01:30:25 -0000 Author: ngie Date: Sun Oct 18 01:30:23 2015 New Revision: 289479 URL: https://svnweb.freebsd.org/changeset/base/289479 Log: Revert the linked library order because it might affect the optimization of static binaries and it might affect functionality with weak symbols in dynamic binaries Requested by: bdrewery, imp Modified: user/ngie/bug203673/bin/df/Makefile user/ngie/bug203673/bin/ls/Makefile user/ngie/bug203673/libexec/ftpd/Makefile user/ngie/bug203673/usr.bin/netstat/Makefile user/ngie/bug203673/usr.bin/procstat/Makefile user/ngie/bug203673/usr.bin/w/Makefile Modified: user/ngie/bug203673/bin/df/Makefile ============================================================================== --- user/ngie/bug203673/bin/df/Makefile Sun Oct 18 01:21:29 2015 (r289478) +++ user/ngie/bug203673/bin/df/Makefile Sun Oct 18 01:30:23 2015 (r289479) @@ -9,6 +9,6 @@ SRCS= df.c vfslist.c CFLAGS+= -I${MOUNT} -LIBADD= util xo +LIBADD= xo util .include Modified: user/ngie/bug203673/bin/ls/Makefile ============================================================================== --- user/ngie/bug203673/bin/ls/Makefile Sun Oct 18 01:21:29 2015 (r289478) +++ user/ngie/bug203673/bin/ls/Makefile Sun Oct 18 01:30:23 2015 (r289479) @@ -5,7 +5,7 @@ PROG= ls SRCS= cmp.c ls.c print.c util.c -LIBADD= util xo +LIBADD= xo util .if !defined(RELEASE_CRUNCH) && \ ${MK_LS_COLORS} != no Modified: user/ngie/bug203673/libexec/ftpd/Makefile ============================================================================== --- user/ngie/bug203673/libexec/ftpd/Makefile Sun Oct 18 01:21:29 2015 (r289478) +++ user/ngie/bug203673/libexec/ftpd/Makefile Sun Oct 18 01:30:23 2015 (r289479) @@ -13,7 +13,7 @@ YFLAGS= WARNS?= 2 WFORMAT=0 -LIBADD= crypt util xo +LIBADD= crypt xo util # XXX Kluge! Conversation mechanism needs to be fixed. LIBADD+= opie md Modified: user/ngie/bug203673/usr.bin/netstat/Makefile ============================================================================== --- user/ngie/bug203673/usr.bin/netstat/Makefile Sun Oct 18 01:21:29 2015 (r289478) +++ user/ngie/bug203673/usr.bin/netstat/Makefile Sun Oct 18 01:30:23 2015 (r289479) @@ -56,7 +56,7 @@ CFLAGS+=-DPF BINGRP= kmem BINMODE=2555 -LIBADD= kvm memstat util xo +LIBADD= kvm memstat xo util .if ${MK_NETGRAPH_SUPPORT} != "no" SRCS+= netgraph.c Modified: user/ngie/bug203673/usr.bin/procstat/Makefile ============================================================================== --- user/ngie/bug203673/usr.bin/procstat/Makefile Sun Oct 18 01:21:29 2015 (r289478) +++ user/ngie/bug203673/usr.bin/procstat/Makefile Sun Oct 18 01:30:23 2015 (r289479) @@ -17,6 +17,6 @@ SRCS= procstat.c \ procstat_threads.c \ procstat_vm.c -LIBADD+= procstat util xo sbuf +LIBADD+= procstat xo util sbuf .include Modified: user/ngie/bug203673/usr.bin/w/Makefile ============================================================================== --- user/ngie/bug203673/usr.bin/w/Makefile Sun Oct 18 01:21:29 2015 (r289478) +++ user/ngie/bug203673/usr.bin/w/Makefile Sun Oct 18 01:30:23 2015 (r289479) @@ -4,7 +4,7 @@ PROG= w SRCS= fmt.c pr_time.c proc_compare.c w.c MAN= w.1 uptime.1 -LIBADD= kvm sbuf util xo +LIBADD= kvm sbuf xo util LINKS= ${BINDIR}/w ${BINDIR}/uptime .PATH: ${.CURDIR}/../../bin/ps