Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 16 Jun 2016 03:00:10 +0000 (UTC)
From:      Glen Barber <gjb@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r301944 - head/share/zoneinfo
Message-ID:  <201606160300.u5G30AQ8042969@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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:



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201606160300.u5G30AQ8042969>