svn commit: r320454 - head/share/zoneinfo

Cy Schubert cy at FreeBSD.org
Wed Jun 28 19:05:06 UTC 2017


Author: cy
Date: Wed Jun 28 19:05:04 2017
New Revision: 320454
URL: https://svnweb.freebsd.org/changeset/base/320454

Log:
  Allow parallel installworld (-j N) and poudriere installworld
  (poudriere jail -c and poudriere jail -u) to proceed.
  
  Reviewed by:	trasz@
  Tested by:	trasz@, cy@
  MFC after:	1 month
  X-MFC-with:	r320362

Modified:
  head/share/zoneinfo/Makefile

Modified: head/share/zoneinfo/Makefile
==============================================================================
--- head/share/zoneinfo/Makefile	Wed Jun 28 17:32:09 2017	(r320453)
+++ head/share/zoneinfo/Makefile	Wed Jun 28 19:05:04 2017	(r320454)
@@ -94,7 +94,7 @@ install-zoneinfo:
 .for f in ${TZS}
 	${INSTALL} ${TAG_ARGS} \
 	    -o ${BINOWN} -g ${BINGRP} -m ${NOBINMODE} \
-	    ${TZBUILDDIR:C,^${.OBJDIR}/,,}/${f} ${DESTDIR}/usr/share/zoneinfo/${f}
+	    ${TZBUILDDIR}/${f} ${DESTDIR}/usr/share/zoneinfo/${f}
 .endfor
 	${INSTALL} ${TAG_ARGS} -o ${BINOWN} -g ${BINGRP} -m ${NOBINMODE} \
 	    ${CONTRIBDIR}/zone.tab ${DESTDIR}/usr/share/zoneinfo/


More information about the svn-src-all mailing list