diff options
Diffstat (limited to 'autodeps/linux.prov')
-rw-r--r-- | autodeps/linux.prov | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/autodeps/linux.prov b/autodeps/linux.prov index aaede68fb..fd2f98748 100644 --- a/autodeps/linux.prov +++ b/autodeps/linux.prov @@ -9,7 +9,7 @@ for f in $filelist; do soname=$(objdump -p $f | awk '/SONAME/ {print $2}') if [ "$soname" != "" ]; then - if [ "$soname" != "_end" ]; then + if [ ! -L $f ]; then echo $soname fi else |