projects
/
gentoo.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a7d1220
)
media-libs/celt: use if/then for pruning .la files
author
Aaron Bauman
<bman@gentoo.org>
Tue, 29 May 2018 20:02:24 +0000
(16:02 -0400)
committer
Aaron Bauman
<bman@gentoo.org>
Tue, 29 May 2018 20:10:25 +0000
(16:10 -0400)
Package-Manager: Portage-2.3.40, Repoman-2.3.9
media-libs/celt/celt-0.5.1.3.ebuild
patch
|
blob
|
history
diff --git
a/media-libs/celt/celt-0.5.1.3.ebuild
b/media-libs/celt/celt-0.5.1.3.ebuild
index aa8cfc218fbb7aaf84161632868691aabb215c3b..8d4ede3a589495265f25fedc11fea3aeceeefa82 100644
(file)
--- a/
media-libs/celt/celt-0.5.1.3.ebuild
+++ b/
media-libs/celt/celt-0.5.1.3.ebuild
@@
-23,5
+23,7
@@
src_configure() {
src_install() {
default
- use static-libs || (find "${D}" -name '*.la' -delete || die "Pruning failed")
+ if ! use static-libs; then
+ find "${D}" -name '*.la' -delete || die "Pruning failed"
+ fi
}