Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 16 Jun 2016 13:34:21 +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: r301965 - head/share/zoneinfo
Message-ID:  <201606161334.u5GDYLrY081309@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: gjb
Date: Thu Jun 16 13:34:20 2016
New Revision: 301965
URL: https://svnweb.freebsd.org/changeset/base/301965

Log:
  Reimplement r301944 using the correct install(1) invocation, which again
  fixes packaging tzdata/zoneinfo.
  
  Thank you to hrs for the pointer on what I did incorrectly.
  
  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 12:14:19 2016	(r301964)
+++ head/share/zoneinfo/Makefile	Thu Jun 16 13:34:20 2016	(r301965)
@@ -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} ${TAG_ARGS} \
 	    -o ${BINOWN} -g ${BINGRP} -m ${NOBINMODE} \
 	    \{} ${DESTDIR}/usr/share/zoneinfo/\{} \;
-	${INSTALL} -o ${BINOWN} -g ${BINGRP} -m ${NOBINMODE} \
+	${INSTALL} ${TAG_ARGS} -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?201606161334.u5GDYLrY081309>