Gentoo Archives: gentoo-commits

From: Joonas Niilola <juippis@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: eclass/
Date: Sun, 13 Sep 2020 06:01:19
Message-Id: 1599976863.cde9fdc45adad2beb7d6df4aa0d13b93cbf5d77c.juippis@gentoo
1 commit: cde9fdc45adad2beb7d6df4aa0d13b93cbf5d77c
2 Author: Joonas Niilola <juippis <AT> gentoo <DOT> org>
3 AuthorDate: Sun Sep 13 05:48:22 2020 +0000
4 Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
5 CommitDate: Sun Sep 13 06:01:03 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cde9fdc4
7
8 ltprune.eclass: match removing libtool files command with policy guide
9
10 - https://projects.gentoo.org/qa/policy-guide/installed-files.html#pg0303
11
12 Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
13
14 eclass/ltprune.eclass | 4 ++--
15 1 file changed, 2 insertions(+), 2 deletions(-)
16
17 diff --git a/eclass/ltprune.eclass b/eclass/ltprune.eclass
18 index d8e93b6fb4b..fe244cbf3c8 100644
19 --- a/eclass/ltprune.eclass
20 +++ b/eclass/ltprune.eclass
21 @@ -1,4 +1,4 @@
22 -# Copyright 1999-2019 Gentoo Authors
23 +# Copyright 1999-2020 Gentoo Authors
24 # Distributed under the terms of the GNU General Public License v2
25
26 # @ECLASS: ltprune.eclass
27 @@ -11,7 +11,7 @@
28 #
29 # Discouraged. Whenever possible, please use much simpler:
30 # @CODE
31 -# find "${D}" -name '*.la' -type f -delete || die
32 +# find "${ED}" -name '*.la' -remove || die
33 # @CODE
34
35 if [[ -z ${_LTPRUNE_ECLASS} ]]; then