Commit 1529be40 authored by Vitaly Lipatov's avatar Vitaly Lipatov

small cleanup code

parent 37d90364
...@@ -386,13 +386,18 @@ get_libs_requires() ...@@ -386,13 +386,18 @@ get_libs_requires()
__get_binary_requires "$fdir" | LANG=C sort -u >$libreqlist __get_binary_requires "$fdir" | LANG=C sort -u >$libreqlist
info " List of binary and libs requires:" info " List of binary and libs requires:"
info $(cat $libreqlist) info "$(cat $libreqlist | xargs -n1000)"
info " End of the list binary and libs requires." info " End of the list binary and libs requires."
__get_library_provides "$fdir" | LANG=C sort -u >$libpreslist __get_library_provides "$fdir" | LANG=C sort -u >$libpreslist
info " List of libraries provided:" info " List of libraries provided:"
info $(cat $libpreslist) info "$(cat $libpreslist | xargs -n1000)"
info " End of the list provided by the library." info " End of the provided libraries list."
info " List of ignored libraries:"
info "$EEPM_IGNORE_LIB_REQUIRES"
info " End of the ignored libraries."
# print out result # print out result
LANG=C join -v2 $libpreslist $libreqlist LANG=C join -v2 $libpreslist $libreqlist
rm -f $libreqlist $libpreslist 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