Commit b1f5f84d authored by Boris Yumankulov's avatar Boris Yumankulov Committed by Vitaly Lipatov

Revert "get_libs_requires: avoid libs spam (eterbug #17815)"

This reverts commit ab6ab074. (fixed get_libs_requires)
parent 396a94e3
......@@ -441,7 +441,7 @@ get_libs_requires()
local fdir="$BUILDROOT/$1"
__get_binary_requires "$fdir" | LANG=C sort -u >$libreqlist
estrlist reg_wordexclude "$EEPM_IGNORE_LIB_REQUIRES" "$(cat $libreqlist | tr '\n' ' ')" > $libreqlist >/dev/null 2>&1
estrlist reg_wordexclude "$EEPM_IGNORE_LIB_REQUIRES" "$(cat $libreqlist | tr '\n' ' ')" >$libreqlist
if [ -n "$verbose" ] ; then
info " List of binary and libs requires:"
info "$(cat $libreqlist | xargs -n1000)"
......@@ -449,7 +449,7 @@ get_libs_requires()
fi
__get_library_provides "$fdir" | LANG=C sort -u >$libpreslist
estrlist reg_wordexclude "$(cat $libpreslist | xargs -n1000)" "$(cat $libreqlist | tr '\n' ' ')" > $libreqlist >/dev/null 2>&1
estrlist reg_wordexclude "$(cat $libpreslist | xargs -n1000)" "$(cat $libreqlist | tr '\n' ' ')" >$libreqlist
if [ -n "$verbose" ] ; then
info " List of libraries provided:"
info "$(cat $libpreslist | xargs -n1000)"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment