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 | f022e4d394c344dcc6488892b821052d8abcc782 (patch) | |
tree | 601386ec31c2750517ce54b57361c74a2d8e79db /eclass/enlightenment.eclass | |
parent | live cvs (diff) | |
download | historical-f022e4d394c344dcc6488892b821052d8abcc782.tar.gz historical-f022e4d394c344dcc6488892b821052d8abcc782.tar.bz2 historical-f022e4d394c344dcc6488892b821052d8abcc782.zip |
make sure we call the right unpack func when using cvs
Diffstat (limited to 'eclass/enlightenment.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 } |