MFC r271047: 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. Approved by: re Sponsored by: DARPA, AFRL
This commit is contained in:
parent
e7480b54c3
commit
e594c0c895
@ -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} \
|
||||
|
Loading…
Reference in New Issue
Block a user