diff options
author | Michał Górny <mgorny@gentoo.org> | 2020-09-13 08:56:12 +0200 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2020-09-13 08:56:12 +0200 |
commit | 2ab9dac1a436e8698963da0aa0a00c978611a747 (patch) | |
tree | 6bdb352f1ba56d29288813604f7a16ec182c4643 | |
parent | deprecation: Include deprecated eclasses (diff) | |
download | policy-guide-2ab9dac1a436e8698963da0aa0a00c978611a747.tar.gz policy-guide-2ab9dac1a436e8698963da0aa0a00c978611a747.tar.bz2 policy-guide-2ab9dac1a436e8698963da0aa0a00c978611a747.zip |
installed-files: Fix -remove → -delete
Signed-off-by: Michał Górny <mgorny@gentoo.org>
-rw-r--r-- | installed-files.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/installed-files.rst b/installed-files.rst index c8c55f2..db949b0 100644 --- a/installed-files.rst +++ b/installed-files.rst @@ -79,7 +79,7 @@ b. the package is installing static libraries that have additional It is recommended to use the following one-liner to remove .la files:: - find "${ED}" -name '*.la' -remove || die + find "${ED}" -name '*.la' -delete || die *Rationale*: libtool files were historically introduced as an attempt to supplement static library archives with dependent library list. |