From 612ef3f1b77ae081c82a69d5b031a6ea631b0585 Mon Sep 17 00:00:00 2001 From: emaste Date: Mon, 12 Jan 2015 18:19:07 +0000 Subject: [PATCH] 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. git-svn-id: svn://svn.freebsd.org/base/stable/9@277080 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f --- share/zoneinfo/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/share/zoneinfo/Makefile b/share/zoneinfo/Makefile index bccea5ec5..1d84188ea 100644 --- a/share/zoneinfo/Makefile +++ b/share/zoneinfo/Makefile @@ -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} \ -- 2.45.0