mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-11-23 08:21:09 +01:00
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
This commit is contained in:
parent
df63a5d236
commit
e527e84592
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=271047
@ -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