commit: da96505568e19958b6d05fd457ee273841a95198
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Fri Mar 24 03:46:49 2023 +0000
Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org>
CommitDate: Sun Mar 26 11:36:12 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=da965055
unpacker.eclass: fix spelling
Thanks to codespell.
Signed-off-by: Sam James <sam <AT> gentoo.org>
Signed-off-by: Ulrich Müller <ulm <AT> gentoo.org>
eclass/unpacker.eclass | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/eclass/unpacker.eclass b/eclass/unpacker.eclass
index a3c388c6b9b7..650de4bd3f75 100644
--- a/eclass/unpacker.eclass
+++ b/eclass/unpacker.eclass
@@ -137,7 +137,7 @@ unpack_pdv() {
istar=0
fi
- #for some reason gzip dies with this ... dd cant provide buffer fast
enough ?
+ # For some reason gzip dies with this ... dd can't provide buffer fast
enough ?
#dd if=${src} ibs=${metaskip} count=1 \
# | dd ibs=${tailskip} skip=1 \
# | gzip -dc \
@@ -239,7 +239,7 @@ unpack_makeself() {
case ${exe} in
tail) exe=( tail -n +${skip} "${src}" );;
dd) exe=( dd ibs=${skip} skip=1 if="${src}" );;
- *) die "makeself cant handle exe '${exe}'"
+ *) die "makeself can't handle exe '${exe}'"
esac
# lets grab the first few bytes of the file to figure out what kind of
archive it is