summaryrefslogtreecommitdiffhomepage
path: root/subr
diff options
context:
space:
mode:
Diffstat (limited to 'subr')
-rw-r--r--subr/tarballs.subr4
1 files changed, 2 insertions, 2 deletions
diff --git a/subr/tarballs.subr b/subr/tarballs.subr
index 303c6522..9761c19f 100644
--- a/subr/tarballs.subr
+++ b/subr/tarballs.subr
@@ -8,9 +8,9 @@ do_tarball_dist() {
insecure_mkdir ${PREFIX_BASENAME}/lib.bak;
tar -C ${PREFIX_BASENAME}/lib -cpf - . | tar -C ${PREFIX_BASENAME}/lib.bak -xpf -;
log_msg info "Backed up ${PREFIX_BASENAME}/lib.";
- for _dtd_lname in $(find native/lib \( \
+ for _dtd_lname in $(find native/lib \( \
-iname \*.so -or -iname \*.so.\* -or -iname \*.so.\*.\* -or \
- -iname \*.so.\*.\*.\* \) -and \( -not -iname \*.lib.a \) -and -type l); do
+ -iname \*.so.\*.\*.\* -or -iname \*.lib.a \) -and -type l); do
if [ "${_dtd_lname#/}" = "${_dtd_lname}" ]; then
_dtd_lname="${PWD}/${_dtd_lname}";
fi;