diff options
author | Chris Gianelloni <wolf31o2@gentoo.org> | 2003-08-25 13:19:56 +0000 |
---|---|---|
committer | Chris Gianelloni <wolf31o2@gentoo.org> | 2003-08-25 13:19:56 +0000 |
commit | 8823a37e58281e1571eb8039e3b8d741e343fda9 (patch) | |
tree | f4bbf28c27b445e594a7d98bd088e68df9ce6eb7 /eclass | |
parent | cleaning out. (diff) | |
download | historical-8823a37e58281e1571eb8039e3b8d741e343fda9.tar.gz historical-8823a37e58281e1571eb8039e3b8d741e343fda9.tar.bz2 historical-8823a37e58281e1571eb8039e3b8d741e343fda9.zip |
Updating unpack_makeself to support newer Makeself version used in America's Army 1.9.0
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/eutils.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/eutils.eclass b/eclass/eutils.eclass index edcd8933703c..13953006d5dc 100644 --- a/eclass/eutils.eclass +++ b/eclass/eutils.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/eutils.eclass,v 1.46 2003/07/22 18:42:59 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/eutils.eclass,v 1.47 2003/08/25 13:19:56 wolf31o2 Exp $ # # Author: Martin Schlemmer <azarah@gentoo.org> # @@ -856,7 +856,7 @@ unpack_makeself() { 2.0|2.0.1) skip=`grep -a ^$'\t'tail ${src} | awk '{print $2}' | cut -b2-` ;; - 2.1.1) + 2.1.*) # tested 2.1.{1,2,3} ... guessing 2.1.x series is same skip=`grep -a ^offset= ${src} | awk '{print $2}' | cut -b2-` let skip="skip + 1" ;; |