Commit 5d6f7290 authored by Boris Yumankulov's avatar Boris Yumankulov Committed by Vitaly Lipatov

epm repack: fix ignore_lib_requires (eterbug #17610)

parent 1f0325b4
...@@ -434,7 +434,7 @@ get_libs_requires() ...@@ -434,7 +434,7 @@ get_libs_requires()
local fdir="$BUILDROOT/$1" local fdir="$BUILDROOT/$1"
__get_binary_requires "$fdir" | LANG=C sort -u >$libreqlist __get_binary_requires "$fdir" | LANG=C sort -u >$libreqlist
estrlist reg_exclude "$EEPM_IGNORE_LIB_REQUIRES" "$(cat $libreqlist)" >$libreqlist estrlist reg_wordexclude "$EEPM_IGNORE_LIB_REQUIRES" "$(cat $libreqlist | tr '\n' ' ')" >$libreqlist
if [ -n "$verbose" ] ; then if [ -n "$verbose" ] ; then
info " List of binary and libs requires:" info " List of binary and libs requires:"
info "$(cat $libreqlist | xargs -n1000)" info "$(cat $libreqlist | 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