This was causing get_dso_deps to go haywire when encountering statically linked things like /sbin/grub. Particularly bad on x86_64 when it would try to use the 64bit LDSO to run the 32bit executable. The output would be bad enough that it would short circuit our loop to install all the things in KEEPFILES. We noticed this because on x86_64 the gtk2 theme is what is listed after /sbin/grub in keepfiles, and we weren't getting our theme on x86_64. --- scripts/buildinstall.functions | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/scripts/buildinstall.functions b/scripts/buildinstall.functions index 2afb652..af90070 100755 --- a/scripts/buildinstall.functions +++ b/scripts/buildinstall.functions @@ -110,7 +110,8 @@ instFile() { fi f=$(file $FILE) - echo $f | egrep -q ": (setuid )?ELF" && { + echo $f | egrep -q ": (setuid )?ELF" && + echo $f | egrep -qv "statically linked" && { if echo $f | grep -q " 64-bit " ; then get_dso_deps $(pwd) "$FILE" lib64 else -- 1.6.2.5 _______________________________________________ Anaconda-devel-list mailing list Anaconda-devel-list@xxxxxxxxxx https://www.redhat.com/mailman/listinfo/anaconda-devel-list