diff options
author | Mike Frysinger <vapier@gentoo.org> | 2004-07-30 13:23:16 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2004-07-30 13:23:16 +0000 |
commit | f8083398c51a9186b054404929bb404c81e0eeb9 (patch) | |
tree | 5455308f152119fb953c71b595c20e4b2d0c189d /eclass/horde.eclass | |
parent | new version on cpan (diff) | |
download | historical-f8083398c51a9186b054404929bb404c81e0eeb9.tar.gz historical-f8083398c51a9186b054404929bb404c81e0eeb9.tar.bz2 historical-f8083398c51a9186b054404929bb404c81e0eeb9.zip |
make sure test.php isnt readable #57514
Diffstat (limited to 'eclass/horde.eclass')
-rw-r--r-- | eclass/horde.eclass | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/eclass/horde.eclass b/eclass/horde.eclass index e07720434074..fdef3c1281cf 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.9 2004/06/25 00:39:48 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/horde.eclass,v 1.10 2004/07/30 13:23:16 vapier Exp $ # # Help manage the horde project http://www.horde.org/ # @@ -72,6 +72,8 @@ horde_src_unpack() { else unpack ${A} fi + cd ${S} + [ -f test.php ] && chmod 000 test.php } horde_src_install() { |