diff options
author | Mike Frysinger <vapier@gentoo.org> | 2004-10-22 12:51:57 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2004-10-22 12:51:57 +0000 |
commit | 2d0d056e66986a8a4ebea7e6e8deadea9e9e3f7b (patch) | |
tree | 1a6f8795801cd55a310c682413faf90cf832da77 /eclass | |
parent | live cvs (Manifest recommit) (diff) | |
download | gentoo-2-2d0d056e66986a8a4ebea7e6e8deadea9e9e3f7b.tar.gz gentoo-2-2d0d056e66986a8a4ebea7e6e8deadea9e9e3f7b.tar.bz2 gentoo-2-2d0d056e66986a8a4ebea7e6e8deadea9e9e3f7b.zip |
make sure we call the right unpack func when using cvs
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/enlightenment.eclass | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/eclass/enlightenment.eclass b/eclass/enlightenment.eclass index ec7b7763b8b9..75efb4aff1a7 100644 --- a/eclass/enlightenment.eclass +++ b/eclass/enlightenment.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/enlightenment.eclass,v 1.29 2004/10/21 20:24:29 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/enlightenment.eclass,v 1.30 2004/10/22 12:51:57 vapier Exp $ # # Author: vapier@gentoo.org @@ -80,7 +80,11 @@ gettext_modify() { } enlightenment_src_unpack() { - [ "${ECVS_STATE}" != "live" ] && unpack ${A} + if [ "${ECVS_STATE}" == "live" ] ; then + cvs_src_unpack + else + unpack ${A} + fi gettext_modify } |