diff options
author | Krzysztof Pawlik <nelchael@gentoo.org> | 2010-01-17 12:03:48 +0000 |
---|---|---|
committer | Krzysztof Pawlik <nelchael@gentoo.org> | 2010-01-17 12:03:48 +0000 |
commit | 2470d77d92106a3b75f8ffff89a7c78133842e83 (patch) | |
tree | 54a63995b6381d251fad869a26265d039a2e1177 /eclass | |
parent | Cleanup (diff) | |
download | historical-2470d77d92106a3b75f8ffff89a7c78133842e83.tar.gz historical-2470d77d92106a3b75f8ffff89a7c78133842e83.tar.bz2 historical-2470d77d92106a3b75f8ffff89a7c78133842e83.zip |
chmod is not critical, so do not die if it fails.
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/mercurial.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/mercurial.eclass b/eclass/mercurial.eclass index 5c1237357a0f..e20cb2be5b04 100644 --- a/eclass/mercurial.eclass +++ b/eclass/mercurial.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/mercurial.eclass,v 1.9 2010/01/17 11:21:12 nelchael Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/mercurial.eclass,v 1.10 2010/01/17 12:03:48 nelchael Exp $ # @ECLASS: mercurial.eclass # @MAINTAINER: @@ -92,7 +92,7 @@ function mercurial_fetch { mkdir -p "${hg_src_dir}/${EHG_PROJECT}" || \ die "failed to create ${hg_src_dir}/${EHG_PROJECT}" chmod -f g+rw "${hg_src_dir}/${EHG_PROJECT}" || \ - die "failed to chwon ${EHG_PROJECT}" + echo "Warning: failed to chmod g+rw ${EHG_PROJECT}" cd "${hg_src_dir}/${EHG_PROJECT}" || \ die "failed to cd to ${hg_src_dir}/${EHG_PROJECT}" |