From owner-svn-src-stable@freebsd.org Thu Jul 6 05:20:31 2017 Return-Path: Delivered-To: svn-src-stable@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 3FB1DD9EB8E; Thu, 6 Jul 2017 05:20:31 +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 0DC07806DD; Thu, 6 Jul 2017 05:20:30 +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 v665KUfS010071; Thu, 6 Jul 2017 05:20:30 GMT (envelope-from ngie@FreeBSD.org) Received: (from ngie@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v665KU3m010070; Thu, 6 Jul 2017 05:20:30 GMT (envelope-from ngie@FreeBSD.org) Message-Id: <201707060520.v665KU3m010070@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ngie set sender to ngie@FreeBSD.org using -f From: Ngie Cooper Date: Thu, 6 Jul 2017 05:20:30 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-10@freebsd.org Subject: svn commit: r320706 - stable/10/usr.bin/pr/tests X-SVN-Group: stable-10 X-SVN-Commit-Author: ngie X-SVN-Commit-Paths: stable/10/usr.bin/pr/tests X-SVN-Commit-Revision: 320706 X-SVN-Commit-Repository: base MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-stable@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for all the -stable branches of the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 06 Jul 2017 05:20:31 -0000 Author: ngie Date: Thu Jul 6 05:20:30 2017 New Revision: 320706 URL: https://svnweb.freebsd.org/changeset/base/320706 Log: Fix up r319257 PACKAGE support doesn't exist on ^/stable/10, so FILES must be used instead. Furthermore, BINDIR isn't automatically set to ${TESTSDIR} on this branch. This is a direct commit to ^/stable/10. Modified: stable/10/usr.bin/pr/tests/Makefile Modified: stable/10/usr.bin/pr/tests/Makefile ============================================================================== --- stable/10/usr.bin/pr/tests/Makefile Thu Jul 6 05:16:06 2017 (r320705) +++ stable/10/usr.bin/pr/tests/Makefile Thu Jul 6 05:20:30 2017 (r320706) @@ -1,16 +1,16 @@ # $FreeBSD$ -PACKAGE= tests - ATF_TESTS_SH+= basic2_test NETBSD_ATF_TESTS_SH= basic -${PACKAGE}FILES+= across.out -${PACKAGE}FILES+= d_basic.in -${PACKAGE}FILES+= d_basic.out -${PACKAGE}FILES+= merge.out -${PACKAGE}FILES+= other.in -${PACKAGE}FILES+= threecol.out +FILES+= across.out +FILES+= d_basic.in +FILES+= d_basic.out +FILES+= merge.out +FILES+= other.in +FILES+= threecol.out + +BINDIR= ${TESTSDIR} .include