Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 12 Jan 2015 18:19:08 +0000 (UTC)
From:      Ed Maste <emaste@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-9@freebsd.org
Subject:   svn commit: r277080 - stable/9/share/zoneinfo
Message-ID:  <201501121819.t0CIJ8rD049144@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: emaste
Date: Mon Jan 12 18:19:07 2015
New Revision: 277080
URL: https://svnweb.freebsd.org/changeset/base/277080

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.
  
  MFC of r271047.

Modified:
  stable/9/share/zoneinfo/Makefile
Directory Properties:
  stable/9/share/zoneinfo/   (props changed)

Modified: stable/9/share/zoneinfo/Makefile
==============================================================================
--- stable/9/share/zoneinfo/Makefile	Mon Jan 12 18:14:22 2015	(r277079)
+++ stable/9/share/zoneinfo/Makefile	Mon Jan 12 18:19:07 2015	(r277080)
@@ -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?201501121819.t0CIJ8rD049144>