svn commit: r299037 - in user/ngie/release-pkg-fix-tests/cddl/usr.sbin/dtrace/tests: . tools

Bryan Drewery bdrewery at FreeBSD.org
Wed May 4 03:34:36 UTC 2016


On 5/3/16 7:16 PM, Garrett Cooper wrote:
> Author: ngie
> Date: Wed May  4 02:16:13 2016
> New Revision: 299037
> URL: https://svnweb.freebsd.org/changeset/base/299037
> 
> Log:
>   Use ${PACKAGE}FILES instead of TESTFILES
>   
>   For some odd reason make was getting "lost" with the former idiom and wasn't
>   installing .d and .ksh scripts..
> 
...
> 
> Modified: user/ngie/release-pkg-fix-tests/cddl/usr.sbin/dtrace/tests/tools/genmakefiles.sh
> ==============================================================================
> --- user/ngie/release-pkg-fix-tests/cddl/usr.sbin/dtrace/tests/tools/genmakefiles.sh	Wed May  4 02:11:45 2016	(r299036)
> +++ user/ngie/release-pkg-fix-tests/cddl/usr.sbin/dtrace/tests/tools/genmakefiles.sh	Wed May  4 02:16:13 2016	(r299037)
> @@ -52,7 +52,9 @@ WITH_CTF=YES
>  # This Makefile was generated by \$srcdir${ORIGINDIR#${TOPDIR}}/genmakefiles.sh.
>  #
>  
> -TESTFILES= \\
> +PACKAGE=	tests
> +
> +\${PACKAGE}FILES= \\
>  $tfiles
>  
>  TESTEXES= \\
> 

Presumably because a. PACKAGE is lowercase 'tests' so you get testsFILES
and is b. is plural here rather than singular such as TESTFILES was.

-- 
Regards,
Bryan Drewery


More information about the svn-src-user mailing list