svn commit: r301944 - head/share/zoneinfo

Glen Barber gjb at FreeBSD.org
Thu Jun 16 03:00:11 UTC 2016


Author: gjb
Date: Thu Jun 16 03:00:10 2016
New Revision: 301944
URL: https://svnweb.freebsd.org/changeset/base/301944

Log:
  Fix zoneinfo file packaging.
  
  This change fixes 468 of 488 zoneinfo file packaging issues,
  the rest still to be investigated.
  
  Approved by:	re (blanket, pkgbase)
  Sponsored by:	The FreeBSD Foundation

Modified:
  head/share/zoneinfo/Makefile

Modified: head/share/zoneinfo/Makefile
==============================================================================
--- head/share/zoneinfo/Makefile	Thu Jun 16 02:48:18 2016	(r301943)
+++ head/share/zoneinfo/Makefile	Thu Jun 16 03:00:10 2016	(r301944)
@@ -82,10 +82,10 @@ zoneinfo: yearistype ${TDATA}
 beforeinstall: install-zoneinfo
 install-zoneinfo:
 	cd ${TZBUILDDIR} && \
-	    find -s * -type f -print -exec ${INSTALL} \
+	    find -s * -type f -print -exec ${INSTALL} -T ${TAGS} \
 	    -o ${BINOWN} -g ${BINGRP} -m ${NOBINMODE} \
 	    \{} ${DESTDIR}/usr/share/zoneinfo/\{} \;
-	${INSTALL} -o ${BINOWN} -g ${BINGRP} -m ${NOBINMODE} \
+	${INSTALL} -T ${TAGS} -o ${BINOWN} -g ${BINGRP} -m ${NOBINMODE} \
 	    ${CONTRIBDIR}/zone.tab ${DESTDIR}/usr/share/zoneinfo/
 
 afterinstall:


More information about the svn-src-all mailing list