Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 3 Sep 2014 18:51:33 +0000 (UTC)
From:      Ed Maste <emaste@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r271047 - head/share/zoneinfo
Message-ID:  <201409031851.s83IpXDC089519@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: emaste
Date: Wed Sep  3 18:51:33 2014
New Revision: 271047
URL: http://svnweb.freebsd.org/changeset/base/271047

Log:
  Avoid ./ in zoneinfo entries in METALOG
  
  Use of "find ." resulted in METALOG entries with an extra ./ -- e.g.,
  ./usr/share/zoneinfo/./America/Toronto.  Avoid this by using globbing
  via "find *" instead.
  
  Reviewed by:	brooks
  Sponsored by:	DARPA, AFRL
  Differential Revision: https://reviews.freebsd.org/D719

Modified:
  head/share/zoneinfo/Makefile

Modified: head/share/zoneinfo/Makefile
==============================================================================
--- head/share/zoneinfo/Makefile	Wed Sep  3 17:51:03 2014	(r271046)
+++ head/share/zoneinfo/Makefile	Wed Sep  3 18:51:33 2014	(r271047)
@@ -79,7 +79,7 @@ zoneinfo: yearistype ${TDATA}
 
 beforeinstall:
 	cd ${TZBUILDDIR} && \
-	    find . -type f -print -exec ${INSTALL} \
+	    find * -type f -print -exec ${INSTALL} \
 	    -o ${BINOWN} -g ${BINGRP} -m ${NOBINMODE} \
 	    \{} ${DESTDIR}/usr/share/zoneinfo/\{} \;
 	${INSTALL} -o ${BINOWN} -g ${BINGRP} -m ${NOBINMODE} \



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