diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2016-12-28 03:12:24 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2016-12-28 03:12:45 +0100 |
commit | 1630cb32e5106075d77888ec6831248f2277a585 (patch) | |
tree | 689ed6fcc13cd50d29346c9c74f7722251b2b8f9 /package/tzdata | |
parent | 2d195e88f2d1be1363e878323af0ff0a4a5db3e6 (diff) |
tzdata: fix cpio usage
Diffstat (limited to 'package/tzdata')
-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 \ |