From 29b3d8996d7dcf7db3443c3be67174f6eb4c89c9 Mon Sep 17 00:00:00 2001 From: brooks Date: Fri, 11 Jan 2013 18:37:51 +0000 Subject: Use find -exec to install zoneinfo instead of requiring xargs to be an install tool. Suggested by: delphij --- share/zoneinfo/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'share/zoneinfo') diff --git a/share/zoneinfo/Makefile b/share/zoneinfo/Makefile index 97181da..bccea5e 100644 --- a/share/zoneinfo/Makefile +++ b/share/zoneinfo/Makefile @@ -79,9 +79,9 @@ zoneinfo: yearistype ${TDATA} beforeinstall: cd ${TZBUILDDIR} && \ - find . -type f -print | xargs -I _FILE_ ${INSTALL} \ + find . -type f -print -exec ${INSTALL} \ -o ${BINOWN} -g ${BINGRP} -m ${NOBINMODE} \ - _FILE_ ${DESTDIR}/usr/share/zoneinfo/_FILE_ + \{} ${DESTDIR}/usr/share/zoneinfo/\{} \; ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m ${NOBINMODE} \ ${CONTRIBDIR}/zone.tab ${DESTDIR}/usr/share/zoneinfo/ -- cgit v1.1