diff options
author | Chris Gianelloni <wolf31o2@gentoo.org> | 2003-08-25 13:39:17 +0000 |
---|---|---|
committer | Chris Gianelloni <wolf31o2@gentoo.org> | 2003-08-25 13:39:17 +0000 |
commit | d6072912e7a199005a514026b3fd80bd4e26aa13 (patch) | |
tree | 805979f0e17c3719b382acfd3929237b94cd89a2 /eclass/eutils.eclass | |
parent | new version (diff) | |
download | gentoo-2-d6072912e7a199005a514026b3fd80bd4e26aa13.tar.gz gentoo-2-d6072912e7a199005a514026b3fd80bd4e26aa13.tar.bz2 gentoo-2-d6072912e7a199005a514026b3fd80bd4e26aa13.zip |
SNAFU - commited wrong version... this is proper one
Diffstat (limited to 'eclass/eutils.eclass')
-rw-r--r-- | eclass/eutils.eclass | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/eclass/eutils.eclass b/eclass/eutils.eclass index 13953006d5dc..1adf5fd5d673 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.47 2003/08/25 13:19:56 wolf31o2 Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/eutils.eclass,v 1.48 2003/08/25 13:39:17 wolf31o2 Exp $ # # Author: Martin Schlemmer <azarah@gentoo.org> # @@ -856,10 +856,14 @@ unpack_makeself() { 2.0|2.0.1) skip=`grep -a ^$'\t'tail ${src} | awk '{print $2}' | cut -b2-` ;; - 2.1.*) # tested 2.1.{1,2,3} ... guessing 2.1.x series is same + 2.1.1) skip=`grep -a ^offset= ${src} | awk '{print $2}' | cut -b2-` let skip="skip + 1" ;; + 2.1.3) + skip=`grep -a ^offset= ${src} | awk '{print $3}'` + let skip="skip + 1" + ;; *) eerror "I'm sorry, but I was unable to support the Makeself file." eerror "The version I detected was '${ver}'." |