Date: Tue, 7 Jan 2020 21:56:29 +0000 (UTC) From: John Baldwin <jhb@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r356478 - head Message-ID: <202001072156.007LuTwa069500@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: jhb Date: Tue Jan 7 21:56:28 2020 New Revision: 356478 URL: https://svnweb.freebsd.org/changeset/base/356478 Log: Don't fail universe kernel stage for TARGET_ARCHes without a kernel config. This fixes a regression in r356418 where the entire universe would fail early due to an undefined make target when a given TARGET_ARCH had no associated kernel configs. This is true for all of the hard-float mips TARGET_ARCHes currently. Pointy hat to: me Reviewed by: emaste MFC after: 1 month Differential Revision: https://reviews.freebsd.org/D23071 Modified: head/Makefile Modified: head/Makefile ============================================================================== --- head/Makefile Tue Jan 7 21:56:20 2020 (r356477) +++ head/Makefile Tue Jan 7 21:56:28 2020 (r356478) @@ -728,6 +728,7 @@ universe_kernconf_${TARGET}_${kernel}: .MAKE .endfor .for target_arch in ${TARGET_ARCHES_${TARGET}} universe_kernconfs: universe_kernconfs_${target_arch} .PHONY +universe_kernconfs_${target_arch}: .endfor .endif # make(universe_kernels) universe: universe_epilogue
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202001072156.007LuTwa069500>