diff options
author | Thierry Vignaud <tv@mageia.org> | 2012-08-21 20:54:07 +0000 |
---|---|---|
committer | Thierry Vignaud <tv@mageia.org> | 2012-08-21 20:54:07 +0000 |
commit | 9ac75ac8b8d309493c7aa64d14f08bcd14b8afad (patch) | |
tree | 30f37f4aa3339726411d26756de02cd1a1c063a2 /find-provides.in | |
parent | 06c0809c882715dd0f2c6de075668746a767f074 (diff) | |
download | rpm-setup-9ac75ac8b8d309493c7aa64d14f08bcd14b8afad.tar rpm-setup-9ac75ac8b8d309493c7aa64d14f08bcd14b8afad.tar.gz rpm-setup-9ac75ac8b8d309493c7aa64d14f08bcd14b8afad.tar.bz2 rpm-setup-9ac75ac8b8d309493c7aa64d14f08bcd14b8afad.tar.xz rpm-setup-9ac75ac8b8d309493c7aa64d14f08bcd14b8afad.zip |
ignore fontconfig.prov exit code (mga#7078) which is random
rationale: it runs fc-query on every path matching /usr/share/fonts
so its error code is the the one of the latest fc-query whose argument
can be a directory or fonts.scale ...
Diffstat (limited to 'find-provides.in')
-rwxr-xr-x | find-provides.in | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/find-provides.in b/find-provides.in index c14ef6d..e64b34f 100755 --- a/find-provides.in +++ b/find-provides.in @@ -103,8 +103,7 @@ fi # # --- fonts [ -x @RPMLIBDIR@/fontconfig.prov ] && - echo "$filelist" | tr '[:blank:]' \\n | @RPMLIBDIR@/fontconfig.prov --provides | sort -u \ - && test ${PIPESTATUS[2]} -ne 0 && echo 'error: @RPMLIBDIR@/fontconfig.prov failed' >&2 && exit 1 + echo "$filelist" | tr '[:blank:]' \\n | @RPMLIBDIR@/fontconfig.prov --provides | sort -u # # --- typelib() gobject-introspection bindings |