hashdist / hashstack-old

Obsolete repository, use "hashstack" instead
3 stars 4 forks source link

Improve --check-libs to check for all executables as well #79

Open certik opened 11 years ago

certik commented 11 years ago

Currently the --check-libs only checks .so libraries. Make it check executables as well.

We need to use something like:

$ find -L local/ -type f -executable -exec sh -c "file -i '{}' | grep -q 'x-executable; charset=binary'" \; -print

Except that this doesn't show executables that we link to, so the only result is:

local/bin/launcher

but there should be a way to get around that.