diff options
author | Mike Frysinger <vapier@gentoo.org> | 2005-05-07 23:27:54 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2005-05-07 23:27:54 +0000 |
commit | e99e1f0a1bd0c1f93bf4b9bfc08ae342cc390e9d (patch) | |
tree | bceb9c7ff6b3969fc8af1bd84284775cb67de6a7 /eclass | |
parent | Version bump. (diff) | |
download | historical-e99e1f0a1bd0c1f93bf4b9bfc08ae342cc390e9d.tar.gz historical-e99e1f0a1bd0c1f93bf4b9bfc08ae342cc390e9d.tar.bz2 historical-e99e1f0a1bd0c1f93bf4b9bfc08ae342cc390e9d.zip |
add support for patches
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/horde.eclass | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/eclass/horde.eclass b/eclass/horde.eclass index 04d2c0efe6a0..1f6493a6010a 100644 --- a/eclass/horde.eclass +++ b/eclass/horde.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/horde.eclass,v 1.18 2005/04/29 22:17:53 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/horde.eclass,v 1.19 2005/05/07 23:27:54 vapier Exp $ # # Help manage the horde project http://www.horde.org/ # @@ -94,8 +94,9 @@ horde_src_unpack() { else unpack ${A} fi - cd ${S} + cd "${S}" [[ -f test.php ]] && chmod 000 test.php + [[ -n ${EHORDE_PATCHES} ]] && epatch ${EHORDE_PATCHES} } horde_src_install() { |