diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2015-06-03 11:11:43 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2015-06-03 11:12:28 +0000 |
commit | f8a2871a9c6dec82feea603d3aa100efa0a83937 (patch) | |
tree | d117bc121e8003baabee803f90d5e6fac64e150b /abuild.in | |
parent | 0263b66cc11e57059d2f607f9e0a8c716253ec57 (diff) | |
download | abuild-f8a2871a9c6dec82feea603d3aa100efa0a83937.tar.gz abuild-f8a2871a9c6dec82feea603d3aa100efa0a83937.tar.bz2 abuild-f8a2871a9c6dec82feea603d3aa100efa0a83937.tar.xz abuild-f8a2871a9c6dec82feea603d3aa100efa0a83937.zip |
abuild: fix regression in scanning shared objects
fix regression introduced with commit c70dbf8 (abuild: automatically
detect symlink targets in other subpackages)
Diffstat (limited to 'abuild.in')
-rw-r--r-- | abuild.in | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1061,7 +1061,7 @@ scan_shared_objects() { local name="$1" controldir="$2" datadir="$3" local opt= i= - if [ "$arch" != "noarch" ]; then + if [ "$arch" = "noarch" ]; then return 0 fi |