diff options
author | Sam James <sam@gentoo.org> | 2023-03-24 03:45:29 +0000 |
---|---|---|
committer | Ulrich Müller <ulm@gentoo.org> | 2023-03-26 13:35:53 +0200 |
commit | d0f772a98c7a25d3b1016935e5f3b478e10965c9 (patch) | |
tree | 131415d30482017de6d10361fd13d04d17731346 /eclass/epatch.eclass | |
parent | elisp.eclass: fix spelling (diff) | |
download | gentoo-d0f772a98c7a25d3b1016935e5f3b478e10965c9.tar.gz gentoo-d0f772a98c7a25d3b1016935e5f3b478e10965c9.tar.bz2 gentoo-d0f772a98c7a25d3b1016935e5f3b478e10965c9.zip |
epatch.eclass: fix spelling
Thanks to codespell.
Signed-off-by: Sam James <sam@gentoo.org>
Signed-off-by: Ulrich Müller <ulm@gentoo.org>
Diffstat (limited to 'eclass/epatch.eclass')
-rw-r--r-- | eclass/epatch.eclass | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/eclass/epatch.eclass b/eclass/epatch.eclass index 07f802583fc7..c42aef8e80d1 100644 --- a/eclass/epatch.eclass +++ b/eclass/epatch.eclass @@ -1,4 +1,4 @@ -# Copyright 1999-2022 Gentoo Authors +# Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 # @ECLASS: epatch.eclass @@ -190,7 +190,7 @@ epatch() { local patchname=${x##*/} # Apply single patches, or forced sets of patches, or - # patches with ARCH dependant names. + # patches with ARCH dependent names. # ???_arch_foo.patch # Else, skip this input altogether local a=${patchname#*_} # strip the ???_ @@ -272,7 +272,7 @@ epatch() { fi # Check for absolute paths in patches. If sandbox is disabled, - # people could (accidently) patch files in the root filesystem. + # people could (accidentally) patch files in the root filesystem. # Or trigger other unpleasantries #237667. So disallow -p0 on # such patches. local abs_paths=$(grep -E -n '^[-+]{3} /' "${PATCH_TARGET}" | awk '$2 != "/dev/null" { print }') |