diff options
-rw-r--r-- | package/tzdata/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/tzdata/Makefile b/package/tzdata/Makefile index bf1b6d136..bcc100695 100644 --- a/package/tzdata/Makefile +++ b/package/tzdata/Makefile @@ -41,7 +41,7 @@ tzdata-install: cd ${WRKINST} && for f in UTC ${ADK_RUNTIME_TIMEZONE}; do \ test -s usr/share/zoneinfo/"$$f" || continue; \ echo usr/share/zoneinfo/"$$f" | \ - ${STAGING_HOST_DIR}/usr/bin/cpio -pdu ${IDIR_TZDATA}/; \ + $(CPIO) --quiet -pdu ${IDIR_TZDATA}/; \ done tz=; cd $(IDIR_TZDATA)/usr/share/zoneinfo || exit 1; \ for f in UTC ${ADK_RUNTIME_TIMEZONE}; do \ |