svn commit: r348530 - head

Warner Losh imp at FreeBSD.org
Mon Jun 3 14:14:54 UTC 2019


Author: imp
Date: Mon Jun  3 14:14:53 2019
New Revision: 348530
URL: https://svnweb.freebsd.org/changeset/base/348530

Log:
  Stopgap fix to breakage from r348521.
  
  MTREE is defined, while MTREE_CMD isn't, use it instead.
  This may not be 'right' but it fixes the CI and other issues.
  
  Submitted by: Andreas Nilsson

Modified:
  head/Makefile.inc1

Modified: head/Makefile.inc1
==============================================================================
--- head/Makefile.inc1	Mon Jun  3 10:04:34 2019	(r348529)
+++ head/Makefile.inc1	Mon Jun  3 14:14:53 2019	(r348530)
@@ -888,7 +888,7 @@ INSTALLFLAGS+=	-h sha256
 .endif
 .if defined(DB_FROM_SRC) || defined(NO_ROOT)
 IMAKE_INSTALL=	INSTALL="${INSTALL} ${INSTALLFLAGS}"
-IMAKE_MTREE=	MTREE_CMD="${MTREE_CMD} ${MTREEFLAGS}"
+IMAKE_MTREE=	MTREE_CMD="${MTREE} ${MTREEFLAGS}"
 .endif
 
 DESTDIR_MTREEFLAGS=	-deU


More information about the svn-src-head mailing list