summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSam James <sam@gentoo.org>2023-03-24 03:46:49 +0000
committerUlrich Müller <ulm@gentoo.org>2023-03-26 13:36:12 +0200
commitda96505568e19958b6d05fd457ee273841a95198 (patch)
tree414b6e259f58a5a48388c7955464cbebec3b9cd1 /eclass/unpacker.eclass
parenttoolchain.eclass: fix spelling (diff)
downloadgentoo-da96505568e19958b6d05fd457ee273841a95198.tar.gz
gentoo-da96505568e19958b6d05fd457ee273841a95198.tar.bz2
gentoo-da96505568e19958b6d05fd457ee273841a95198.zip
unpacker.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/unpacker.eclass')
-rw-r--r--eclass/unpacker.eclass4
1 files 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