diff options
author | Christian Ruppert <idl0r@gentoo.org> | 2022-02-28 13:07:22 +0100 |
---|---|---|
committer | Christian Ruppert <idl0r@gentoo.org> | 2022-02-28 13:08:47 +0100 |
commit | c5030059c1b0184e51d56506eed21ec4f2aad287 (patch) | |
tree | 37b74970afab4356cebd803899d3722bfa7030c3 /eclass/unpacker.eclass | |
parent | x11-terms/kitty: call right function for xdg updates (diff) | |
download | gentoo-c5030059c1b0184e51d56506eed21ec4f2aad287.tar.gz gentoo-c5030059c1b0184e51d56506eed21ec4f2aad287.tar.bz2 gentoo-c5030059c1b0184e51d56506eed21ec4f2aad287.zip |
eclass/unpacker.eclass: Add support for makeself 2.3.0
Signed-off-by: Christian Ruppert <idl0r@gentoo.org>
Diffstat (limited to 'eclass/unpacker.eclass')
-rw-r--r-- | eclass/unpacker.eclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/eclass/unpacker.eclass b/eclass/unpacker.eclass index 4c0641d59ce1..de89cd7959a4 100644 --- a/eclass/unpacker.eclass +++ b/eclass/unpacker.eclass @@ -212,7 +212,7 @@ unpack_makeself() { skip=`grep -a ^offset= "${src}" | awk '{print $3}'` (( skip++ )) ;; - 2.1.4|2.1.5|2.1.6|2.2.0|2.4.0) + 2.1.4|2.1.5|2.1.6|2.2.0|2.3.0|2.4.0) skip=$(grep -a offset=.*head.*wc "${src}" | awk '{print $3}' | head -n 1) skip=$(head -n ${skip} "${src}" | wc -c) exe="dd" |