From owner-svn-src-user@freebsd.org Sat Oct 17 22:36:08 2015 Return-Path: <owner-svn-src-user@freebsd.org> 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 71DDEA18314 for <svn-src-user@mailman.ysv.freebsd.org>; Sat, 17 Oct 2015 22:36:08 +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 361C3FAF; Sat, 17 Oct 2015 22:36:08 +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 t9HMa7Ls013271; Sat, 17 Oct 2015 22:36:07 GMT (envelope-from ngie@FreeBSD.org) Received: (from ngie@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t9HMa7Mj013270; Sat, 17 Oct 2015 22:36:07 GMT (envelope-from ngie@FreeBSD.org) Message-Id: <201510172236.t9HMa7Mj013270@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ngie set sender to ngie@FreeBSD.org using -f From: Garrett Cooper <ngie@FreeBSD.org> Date: Sat, 17 Oct 2015 22:36:07 +0000 (UTC) To: src-committers@freebsd.org, svn-src-user@freebsd.org Subject: svn commit: r289474 - user/ngie/bug203673/bin/df 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" <svn-src-user.freebsd.org> List-Unsubscribe: <https://lists.freebsd.org/mailman/options/svn-src-user>, <mailto:svn-src-user-request@freebsd.org?subject=unsubscribe> List-Archive: <http://lists.freebsd.org/pipermail/svn-src-user/> List-Post: <mailto:svn-src-user@freebsd.org> List-Help: <mailto:svn-src-user-request@freebsd.org?subject=help> List-Subscribe: <https://lists.freebsd.org/mailman/listinfo/svn-src-user>, <mailto:svn-src-user-request@freebsd.org?subject=subscribe> X-List-Received-Date: Sat, 17 Oct 2015 22:36:08 -0000 Author: ngie Date: Sat Oct 17 22:36:07 2015 New Revision: 289474 URL: https://svnweb.freebsd.org/changeset/base/289474 Log: df also needs libutil Modified: user/ngie/bug203673/bin/df/Makefile Modified: user/ngie/bug203673/bin/df/Makefile ============================================================================== --- user/ngie/bug203673/bin/df/Makefile Sat Oct 17 22:33:11 2015 (r289473) +++ user/ngie/bug203673/bin/df/Makefile Sat Oct 17 22:36:07 2015 (r289474) @@ -9,6 +9,6 @@ SRCS= df.c vfslist.c CFLAGS+= -I${MOUNT} -LIBADD= xo +LIBADD= util xo .include <bsd.prog.mk>