Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/policy-guide:master commit in: /
Date: Sun, 13 Sep 2020 07:00:21
Message-Id: 1599980172.2ab9dac1a436e8698963da0aa0a00c978611a747.mgorny@gentoo
1 commit: 2ab9dac1a436e8698963da0aa0a00c978611a747
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sun Sep 13 06:56:12 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sun Sep 13 06:56:12 2020 +0000
6 URL: https://gitweb.gentoo.org/proj/policy-guide.git/commit/?id=2ab9dac1
7
8 installed-files: Fix -remove → -delete
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 installed-files.rst | 2 +-
13 1 file changed, 1 insertion(+), 1 deletion(-)
14
15 diff --git a/installed-files.rst b/installed-files.rst
16 index c8c55f2..db949b0 100644
17 --- a/installed-files.rst
18 +++ b/installed-files.rst
19 @@ -79,7 +79,7 @@ b. the package is installing static libraries that have additional
20
21 It is recommended to use the following one-liner to remove .la files::
22
23 - find "${ED}" -name '*.la' -remove || die
24 + find "${ED}" -name '*.la' -delete || die
25
26 *Rationale*: libtool files were historically introduced as an attempt
27 to supplement static library archives with dependent library list.