Commit 5682bc51 authored by Mikhail Tergoev's avatar Mikhail Tergoev Committed by Vitaly Lipatov

epm play common.sh: show list requires and provides

parent cb3b92f1
......@@ -382,9 +382,14 @@ get_libs_requires()
local fdir="$BUILDROOT/$1"
__get_binary_requires "$fdir" | LANG=C sort -u >$libreqlist
info " List of binary requires:"
info $(cat $libreqlist)
info " End of the list binary requires."
__get_library_provides "$fdir" | LANG=C sort -u >$libpreslist
info " List of libraries provided:"
info $(cat $libpreslist)
info " End of the list provided by the library."
# print out result
LANG=C join -v2 $libpreslist $libreqlist
rm -f $libreqlist $libpreslist
......
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