diff options
author | 2018-02-10 16:27:30 +0100 | |
---|---|---|
committer | 2018-08-03 18:28:28 +0200 | |
commit | 14edece08602dc2f1e13ad55fc4c6d0656993c66 (patch) | |
tree | cd0a39796d4e898d1e62753f887644f5675f4876 | |
parent | Gentoo: Disable test that fails because of the gethostbyname4_r revert (diff) | |
download | glibc-14edece08602dc2f1e13ad55fc4c6d0656993c66.tar.gz glibc-14edece08602dc2f1e13ad55fc4c6d0656993c66.tar.bz2 glibc-14edece08602dc2f1e13ad55fc4c6d0656993c66.zip |
[no-patch] locale-gen: suppress ignored error when emptying already empty directorygentoo/glibc-9999-7
Closes: https://bugs.gentoo.org/647188
-rwxr-xr-x | scripts/gentoo/extra/locale/locale-gen | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/gentoo/extra/locale/locale-gen b/scripts/gentoo/extra/locale/locale-gen index 6653caddc2..fc861f4623 100755 --- a/scripts/gentoo/extra/locale/locale-gen +++ b/scripts/gentoo/extra/locale/locale-gen @@ -193,7 +193,7 @@ mkdir -p "${LOCALEDIR}" if [[ -z ${KEEP} && -z ${UPDATE} ]] ; then # Remove all old locale dir and locale-archive before generating new # locale data. Scrubbing via update is done elsewhere. - rm -rf "${LOCALEDIR}"/* || true + rm -rf "${LOCALEDIR}"/* &> /dev/null || true fi # Transform the name in locales.gen to the name used when storing |