Date: Fri, 4 Dec 2015 18:14:31 +0000 (UTC) From: Bryan Drewery <bdrewery@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-10@freebsd.org Subject: svn commit: r291792 - in stable/10: bin/sh/tests cddl etc/periodic gnu gnu/lib gnu/usr.bin/cc gnu/usr.bin/groff gnu/usr.bin/rcs include lib/libiconv_modules secure secure/libexec secure/usr.bin sec... Message-ID: <201512041814.tB4IEVgL019140@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: bdrewery Date: Fri Dec 4 18:14:31 2015 New Revision: 291792 URL: https://svnweb.freebsd.org/changeset/base/291792 Log: MFC r289393: Add more SUBDIR_PARALLEL. Modified: stable/10/bin/sh/tests/Makefile stable/10/cddl/Makefile stable/10/etc/periodic/Makefile stable/10/gnu/Makefile stable/10/gnu/lib/Makefile stable/10/gnu/usr.bin/cc/Makefile stable/10/gnu/usr.bin/groff/Makefile stable/10/gnu/usr.bin/rcs/Makefile stable/10/include/Makefile stable/10/lib/libiconv_modules/Makefile stable/10/secure/Makefile stable/10/secure/libexec/Makefile stable/10/secure/usr.bin/Makefile stable/10/secure/usr.sbin/Makefile stable/10/share/Makefile stable/10/share/doc/Makefile stable/10/share/doc/legal/Makefile stable/10/share/doc/papers/Makefile stable/10/share/doc/psd/Makefile stable/10/share/doc/smm/Makefile stable/10/share/doc/usd/Makefile stable/10/share/examples/Makefile stable/10/share/i18n/Makefile stable/10/share/i18n/csmapper/Makefile stable/10/share/i18n/esdb/Makefile stable/10/share/man/Makefile stable/10/share/syscons/Makefile stable/10/tests/Makefile stable/10/tests/sys/Makefile stable/10/tests/sys/pjdfstest/Makefile stable/10/tests/sys/pjdfstest/tests/Makefile Directory Properties: stable/10/ (props changed) Modified: stable/10/bin/sh/tests/Makefile ============================================================================== --- stable/10/bin/sh/tests/Makefile Fri Dec 4 18:09:51 2015 (r291791) +++ stable/10/bin/sh/tests/Makefile Fri Dec 4 18:14:31 2015 (r291792) @@ -12,4 +12,6 @@ TESTS_SUBDIRS+= parameters TESTS_SUBDIRS+= parser TESTS_SUBDIRS+= set-e +SUBDIR_PARALLEL= + .include <bsd.test.mk> Modified: stable/10/cddl/Makefile ============================================================================== --- stable/10/cddl/Makefile Fri Dec 4 18:09:51 2015 (r291791) +++ stable/10/cddl/Makefile Fri Dec 4 18:14:31 2015 (r291792) @@ -2,10 +2,13 @@ .include <bsd.own.mk> -SUBDIR= lib sbin usr.bin usr.sbin +SUBDIR= lib .WAIT \ + sbin usr.bin usr.sbin .if ${MK_TESTS} != "no" SUBDIR+=tests .endif +SUBDIR_PARALLEL= + .include <bsd.subdir.mk> Modified: stable/10/etc/periodic/Makefile ============================================================================== --- stable/10/etc/periodic/Makefile Fri Dec 4 18:09:51 2015 (r291791) +++ stable/10/etc/periodic/Makefile Fri Dec 4 18:14:31 2015 (r291792) @@ -1,5 +1,6 @@ # $FreeBSD$ SUBDIR= daily security weekly monthly +SUBDIR_PARALLEL= .include <bsd.subdir.mk> Modified: stable/10/gnu/Makefile ============================================================================== --- stable/10/gnu/Makefile Fri Dec 4 18:09:51 2015 (r291791) +++ stable/10/gnu/Makefile Fri Dec 4 18:14:31 2015 (r291792) @@ -3,10 +3,13 @@ .include <bsd.own.mk> -SUBDIR= lib ${_tests} usr.bin +SUBDIR= lib .WAIT \ + ${_tests} usr.bin .if ${MK_TESTS} != "no" _tests= tests .endif +SUBDIR_PARALLEL= + .include <bsd.subdir.mk> Modified: stable/10/gnu/lib/Makefile ============================================================================== --- stable/10/gnu/lib/Makefile Fri Dec 4 18:09:51 2015 (r291791) +++ stable/10/gnu/lib/Makefile Fri Dec 4 18:14:31 2015 (r291792) @@ -16,6 +16,9 @@ SUBDIR+= tests # have taken care of that already. .if ${MK_GNUCXX} != "no" SUBDIR+= libstdc++ libsupc++ +SUBDIR_DEPENDS_libsupc++:= libstdc++ .endif +SUBDIR_PARALLEL= + .include <bsd.subdir.mk> Modified: stable/10/gnu/usr.bin/cc/Makefile ============================================================================== --- stable/10/gnu/usr.bin/cc/Makefile Fri Dec 4 18:09:51 2015 (r291791) +++ stable/10/gnu/usr.bin/cc/Makefile Fri Dec 4 18:14:31 2015 (r291792) @@ -5,7 +5,8 @@ # The order of some of these are rather important. Some depend on previous # subdirs. -SUBDIR= cc_tools libiberty libcpp libdecnumber cc_int cc cc1 include doc +SUBDIR= cc_tools .WAIT \ + libiberty libcpp libdecnumber cc_int cc cc1 include doc .if ${MK_CPP} != "no" SUBDIR+= cpp @@ -24,4 +25,13 @@ SUBDIR+= c++filt SUBDIR+= gcov .endif +SUBDIR_DEPEND_c++:= libcpp libiberty +SUBDIR_DEPEND_cc= libcpp libiberty +SUBDIR_DEPEND_cpp= libcpp libiberty +SUBDIR_DEPEND_cc1plus= cc_int libcpp libdecnumber libiberty +SUBDIR_DEPEND_cc1= cc_int libcpp libdecnumber libiberty +SUBDIR_DEPEND_gcov= libiberty + +SUBDIR_PARALLEL= + .include <bsd.subdir.mk> Modified: stable/10/gnu/usr.bin/groff/Makefile ============================================================================== --- stable/10/gnu/usr.bin/groff/Makefile Fri Dec 4 18:09:51 2015 (r291791) +++ stable/10/gnu/usr.bin/groff/Makefile Fri Dec 4 18:14:31 2015 (r291792) @@ -6,4 +6,6 @@ SUBDIR= contrib doc font man src tmac SUBDIR_DEPEND_${subdir}= src .endfor +SUBDIR_PARALLEL= + .include <bsd.subdir.mk> Modified: stable/10/gnu/usr.bin/rcs/Makefile ============================================================================== --- stable/10/gnu/usr.bin/rcs/Makefile Fri Dec 4 18:09:51 2015 (r291791) +++ stable/10/gnu/usr.bin/rcs/Makefile Fri Dec 4 18:14:31 2015 (r291792) @@ -1,3 +1,7 @@ -SUBDIR= lib ci co ident merge rcs rcsclean rcsdiff rcsmerge rlog rcsfreeze +# $FreeBSD$ + +SUBDIR= lib .WAIT \ + ci co ident merge rcs rcsclean rcsdiff rcsmerge rlog rcsfreeze +SUBDIR_PARALLEL= .include <bsd.subdir.mk> Modified: stable/10/include/Makefile ============================================================================== --- stable/10/include/Makefile Fri Dec 4 18:09:51 2015 (r291791) +++ stable/10/include/Makefile Fri Dec 4 18:14:31 2015 (r291792) @@ -7,6 +7,7 @@ CLEANFILES= osreldate.h version vers.c SUBDIR= arpa protocols rpcsvc rpc xlocale +SUBDIR_PARALLEL= INCS= a.out.h ar.h assert.h bitstring.h complex.h cpio.h _ctype.h ctype.h \ db.h \ dirent.h dlfcn.h elf.h elf-hints.h err.h fmtmsg.h fnmatch.h fstab.h \ Modified: stable/10/lib/libiconv_modules/Makefile ============================================================================== --- stable/10/lib/libiconv_modules/Makefile Fri Dec 4 18:09:51 2015 (r291791) +++ stable/10/lib/libiconv_modules/Makefile Fri Dec 4 18:14:31 2015 (r291792) @@ -5,5 +5,6 @@ SUBDIR= BIG5 DECHanyu EUC EUCTW GBK2K HZ ISO2022 JOHAB MSKanji UES UTF1632 \ UTF7 UTF8 VIQR ZW iconv_none iconv_std mapper_646 mapper_none \ mapper_parallel mapper_serial mapper_std mapper_zone +SUBDIR_PARALLEL= .include <bsd.subdir.mk> Modified: stable/10/secure/Makefile ============================================================================== --- stable/10/secure/Makefile Fri Dec 4 18:09:51 2015 (r291791) +++ stable/10/secure/Makefile Fri Dec 4 18:14:31 2015 (r291792) @@ -2,7 +2,9 @@ .include <bsd.own.mk> -SUBDIR= lib libexec ${_tests} usr.bin usr.sbin +SUBDIR= lib .WAIT \ + libexec ${_tests} usr.bin usr.sbin +SUBDIR_PARALLEL= .if ${MK_TESTS} != "no" _tests= tests Modified: stable/10/secure/libexec/Makefile ============================================================================== --- stable/10/secure/libexec/Makefile Fri Dec 4 18:09:51 2015 (r291791) +++ stable/10/secure/libexec/Makefile Fri Dec 4 18:14:31 2015 (r291792) @@ -11,4 +11,6 @@ SUBDIR+=sftp-server ssh-keysign ssh-pkcs SUBDIR+=tests .endif +SUBDIR_PARALLEL= + .include <bsd.subdir.mk> Modified: stable/10/secure/usr.bin/Makefile ============================================================================== --- stable/10/secure/usr.bin/Makefile Fri Dec 4 18:09:51 2015 (r291791) +++ stable/10/secure/usr.bin/Makefile Fri Dec 4 18:14:31 2015 (r291792) @@ -14,4 +14,6 @@ SUBDIR+=scp sftp ssh ssh-add ssh-agent s SUBDIR+=tests .endif +SUBDIR_PARALLEL= + .include <bsd.subdir.mk> Modified: stable/10/secure/usr.sbin/Makefile ============================================================================== --- stable/10/secure/usr.sbin/Makefile Fri Dec 4 18:09:51 2015 (r291791) +++ stable/10/secure/usr.sbin/Makefile Fri Dec 4 18:14:31 2015 (r291792) @@ -11,4 +11,6 @@ SUBDIR+=sshd SUBDIR+=tests .endif +SUBDIR_PARALLEL= + .include <bsd.subdir.mk> Modified: stable/10/share/Makefile ============================================================================== --- stable/10/share/Makefile Fri Dec 4 18:09:51 2015 (r291791) +++ stable/10/share/Makefile Fri Dec 4 18:14:31 2015 (r291792) @@ -98,4 +98,6 @@ _vt= vt _zoneinfo= zoneinfo .endif +SUBDIR_PARALLEL= + .include <bsd.subdir.mk> Modified: stable/10/share/doc/Makefile ============================================================================== --- stable/10/share/doc/Makefile Fri Dec 4 18:09:51 2015 (r291791) +++ stable/10/share/doc/Makefile Fri Dec 4 18:14:31 2015 (r291792) @@ -28,6 +28,8 @@ _IPv6= IPv6 _roffdocs= papers psd smm usd .endif +SUBDIR_PARALLEL= + # Default output format for troff documents is ascii. # To generate postscript versions of troff documents, use: # make PRINTERDEVICE=ps Modified: stable/10/share/doc/legal/Makefile ============================================================================== --- stable/10/share/doc/legal/Makefile Fri Dec 4 18:09:51 2015 (r291791) +++ stable/10/share/doc/legal/Makefile Fri Dec 4 18:14:31 2015 (r291792) @@ -6,4 +6,6 @@ SUBDIR= intel_ipw \ intel_wpi \ realtek +SUBDIR_PARALLEL= + .include <bsd.subdir.mk> Modified: stable/10/share/doc/papers/Makefile ============================================================================== --- stable/10/share/doc/papers/Makefile Fri Dec 4 18:09:51 2015 (r291791) +++ stable/10/share/doc/papers/Makefile Fri Dec 4 18:14:31 2015 (r291792) @@ -16,4 +16,6 @@ SUBDIR= beyond4.3 \ sysperf \ timecounter +SUBDIR_PARALLEL= + .include <bsd.subdir.mk> Modified: stable/10/share/doc/psd/Makefile ============================================================================== --- stable/10/share/doc/psd/Makefile Fri Dec 4 18:09:51 2015 (r291791) +++ stable/10/share/doc/psd/Makefile Fri Dec 4 18:14:31 2015 (r291792) @@ -37,4 +37,6 @@ SUBDIR+=22.rpcgen \ 26.rpcrfc \ 27.nfsrpc +SUBDIR_PARALLEL= + .include <bsd.subdir.mk> Modified: stable/10/share/doc/smm/Makefile ============================================================================== --- stable/10/share/doc/smm/Makefile Fri Dec 4 18:09:51 2015 (r291791) +++ stable/10/share/doc/smm/Makefile Fri Dec 4 18:14:31 2015 (r291792) @@ -32,4 +32,6 @@ _08.sendmailop= 08.sendmailop _07.lpd= 07.lpd .endif +SUBDIR_PARALLEL= + .include <bsd.subdir.mk> Modified: stable/10/share/doc/usd/Makefile ============================================================================== --- stable/10/share/doc/usd/Makefile Fri Dec 4 18:09:51 2015 (r291791) +++ stable/10/share/doc/usd/Makefile Fri Dec 4 18:14:31 2015 (r291792) @@ -19,5 +19,6 @@ SUBDIR= title \ 20.meref \ 21.troff \ 22.trofftut +SUBDIR_PARALLEL= .include <bsd.subdir.mk> Modified: stable/10/share/examples/Makefile ============================================================================== --- stable/10/share/examples/Makefile Fri Dec 4 18:09:51 2015 (r291791) +++ stable/10/share/examples/Makefile Fri Dec 4 18:14:31 2015 (r291792) @@ -261,4 +261,6 @@ SUBDIR+=pf SUBDIR+=tests .endif +SUBDIR_PARALLEL= + .include <bsd.subdir.mk> Modified: stable/10/share/i18n/Makefile ============================================================================== --- stable/10/share/i18n/Makefile Fri Dec 4 18:09:51 2015 (r291791) +++ stable/10/share/i18n/Makefile Fri Dec 4 18:14:31 2015 (r291792) @@ -4,5 +4,6 @@ .include <bsd.own.mk> SUBDIR= csmapper esdb +SUBDIR_PARALLEL= .include <bsd.subdir.mk> Modified: stable/10/share/i18n/csmapper/Makefile ============================================================================== --- stable/10/share/i18n/csmapper/Makefile Fri Dec 4 18:09:51 2015 (r291791) +++ stable/10/share/i18n/csmapper/Makefile Fri Dec 4 18:14:31 2015 (r291792) @@ -5,6 +5,7 @@ FILESDIR= ${CSMAPPERDIR} SUBDIR= APPLE AST BIG5 CNS CP EBCDIC GB GEORGIAN ISO646 ISO-8859 JIS \ KAZAKH KOI KS MISC TCVN +SUBDIR_PARALLEL= mapper.dir: ${SUBDIR} newfile=$$(for i in ${SUBDIR}; do \ Modified: stable/10/share/i18n/esdb/Makefile ============================================================================== --- stable/10/share/i18n/esdb/Makefile Fri Dec 4 18:09:51 2015 (r291791) +++ stable/10/share/i18n/esdb/Makefile Fri Dec 4 18:14:31 2015 (r291792) @@ -5,6 +5,7 @@ FILESDIR= ${ESDBDIR} SUBDIR= APPLE AST BIG5 CP DEC EUC EBCDIC GB GEORGIAN ISO-2022 ISO-8859 \ ISO646 KAZAKH KOI MISC TCVN UTF +SUBDIR_PARALLEL= FILES+= esdb.dir esdb.dir.db esdb.alias esdb.alias.db CLEANFILES= ${FILES} Modified: stable/10/share/man/Makefile ============================================================================== --- stable/10/share/man/Makefile Fri Dec 4 18:09:51 2015 (r291791) +++ stable/10/share/man/Makefile Fri Dec 4 18:14:31 2015 (r291792) @@ -5,6 +5,7 @@ # XXX MISSING: man3f SUBDIR= man1 man3 man4 man5 man6 man7 man8 man9 +SUBDIR_PARALLEL= MAKEWHATIS?= makewhatis Modified: stable/10/share/syscons/Makefile ============================================================================== --- stable/10/share/syscons/Makefile Fri Dec 4 18:09:51 2015 (r291791) +++ stable/10/share/syscons/Makefile Fri Dec 4 18:14:31 2015 (r291792) @@ -1,5 +1,6 @@ # $FreeBSD$ SUBDIR= fonts keymaps scrnmaps +SUBDIR_PARALLEL= .include <bsd.subdir.mk> Modified: stable/10/tests/Makefile ============================================================================== --- stable/10/tests/Makefile Fri Dec 4 18:09:51 2015 (r291791) +++ stable/10/tests/Makefile Fri Dec 4 18:14:31 2015 (r291792) @@ -4,6 +4,7 @@ SUBDIR+= etc SUBDIR+= sys +SUBDIR_PARALLEL= TESTSDIR= ${TESTSBASE} KYUAFILE= yes Modified: stable/10/tests/sys/Makefile ============================================================================== --- stable/10/tests/sys/Makefile Fri Dec 4 18:09:51 2015 (r291791) +++ stable/10/tests/sys/Makefile Fri Dec 4 18:14:31 2015 (r291792) @@ -19,4 +19,6 @@ TESTS_SUBDIRS+= vm # Items not integrated into kyua runs by default SUBDIR+= pjdfstest +SUBDIR_PARALLEL= + .include <bsd.test.mk> Modified: stable/10/tests/sys/pjdfstest/Makefile ============================================================================== --- stable/10/tests/sys/pjdfstest/Makefile Fri Dec 4 18:09:51 2015 (r291791) +++ stable/10/tests/sys/pjdfstest/Makefile Fri Dec 4 18:14:31 2015 (r291792) @@ -2,5 +2,6 @@ SUBDIR+= pjdfstest SUBDIR+= tests +SUBDIR_PARALLEL= .include <bsd.subdir.mk> Modified: stable/10/tests/sys/pjdfstest/tests/Makefile ============================================================================== --- stable/10/tests/sys/pjdfstest/tests/Makefile Fri Dec 4 18:09:51 2015 (r291791) +++ stable/10/tests/sys/pjdfstest/tests/Makefile Fri Dec 4 18:14:31 2015 (r291792) @@ -36,4 +36,6 @@ TESTS_SUBDIRS+= symlink TESTS_SUBDIRS+= truncate TESTS_SUBDIRS+= unlink +SUBDIR_PARALLEL= + .include <bsd.test.mk>
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201512041814.tB4IEVgL019140>