diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2005-09-27 16:27:24 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2005-09-27 16:27:24 +0000 |
commit | af458bf93bd13358db572577dfd3845e1c845f44 (patch) | |
tree | f7db4deaefcc3b00d4c2c2a819c667428352c41c /share/zoneinfo | |
parent | 0626736c105a008c1da3d4379443cdb4d0e27054 (diff) |
use xargs -r0 for our build process
Diffstat (limited to 'share/zoneinfo')
-rw-r--r-- | share/zoneinfo/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/share/zoneinfo/Makefile b/share/zoneinfo/Makefile index e908fa5950d..7e0cbe6b54b 100644 --- a/share/zoneinfo/Makefile +++ b/share/zoneinfo/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.5 2002/02/18 22:08:32 millert Exp $ +# $OpenBSD: Makefile,v 1.6 2005/09/27 16:27:23 deraadt Exp $ # $NetBSD: Makefile,v 1.14 1995/04/22 12:10:17 cgd Exp $ # Change the line below for your time zone (after finding the zone you want in @@ -82,7 +82,7 @@ realinstall: ${DATA} ${REDO} ${YEARISTYPECOPY} (cd ${.CURDIR}/datfiles; \ ${ZIC} -y ${YEARISTYPECOPY} -d ${TZDIR} -p ${POSIXRULES}) chown -R ${BINOWN}:${BINGRP} ${TZDIR} - find ${TZDIR} -type f | xargs chmod a=r + find ${TZDIR} -type f -print0 | xargs -0r chmod a=r CLEANFILES+= yearistypecopy |