summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuca Longinotti <chtekk@gentoo.org>2006-06-15 18:36:47 +0000
committerLuca Longinotti <chtekk@gentoo.org>2006-06-15 18:36:47 +0000
commit606f9378cdaa5f6fae3ef22ef653d9e1785c9631 (patch)
treee4c5f5b2ea0190429c7104adc02e91ef04ba719f /eclass/horde.eclass
parentppc stable, bug #136469 (diff)
downloadhistorical-606f9378cdaa5f6fae3ef22ef653d9e1785c9631.tar.gz
historical-606f9378cdaa5f6fae3ef22ef653d9e1785c9631.tar.bz2
historical-606f9378cdaa5f6fae3ef22ef653d9e1785c9631.zip
Invert chmod test.php/patch applying order, needed for fixing bug #136830.
Diffstat (limited to 'eclass/horde.eclass')
-rw-r--r--eclass/horde.eclass7
1 files changed, 4 insertions, 3 deletions
diff --git a/eclass/horde.eclass b/eclass/horde.eclass
index c664f95cfbe3..fc823a636159 100644
--- a/eclass/horde.eclass
+++ b/eclass/horde.eclass
@@ -1,6 +1,6 @@
-# Copyright 1999-2004 Gentoo Foundation
+# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/horde.eclass,v 1.33 2006/03/09 23:35:52 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/horde.eclass,v 1.34 2006/06/15 18:36:47 chtekk Exp $
#
# Help manage the horde project http://www.horde.org/
#
@@ -99,8 +99,9 @@ horde_src_unpack() {
unpack ${A}
fi
cd "${S}"
- [[ -f test.php ]] && chmod 000 test.php
+
[[ -n ${EHORDE_PATCHES} ]] && epatch ${EHORDE_PATCHES}
+ [[ -f test.php ]] && chmod 000 test.php
}
horde_src_install() {