Package-Manager: Portage-2.3.63, Repoman-2.3.12
Signed-off-by: Lars Wendler <polynomial-c@gentoo.org>
}
multilib_src_install_all() {
- use static-libs || find "${ED%/}"/usr -name '*.la' -delete
+ if ! use static-libs ; then
+ find "${ED}"/usr -name '*.la' -delete || die
+ fi
}
}
multilib_src_install_all() {
- use static-libs || find "${ED%/}"/usr -name '*.la' -delete
+ if ! use static-libs ; then
+ find "${ED}"/usr -name '*.la' -delete || die
+ fi
}
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
# TODO: Add python support.
}
multilib_src_install_all() {
- use static-libs || find "${ED%/}"/usr -name '*.la' -delete
+ if ! use static-libs ; then
+ find "${ED}"/usr -name '*.la' -delete || die
+ fi
}