diff options
author | Christian Faulhammer <fauli@gentoo.org> | 2007-12-07 00:16:24 +0000 |
---|---|---|
committer | Christian Faulhammer <fauli@gentoo.org> | 2007-12-07 00:16:24 +0000 |
commit | 9d04d0d236bd650aa7c11149ac68668a0d7b4787 (patch) | |
tree | d94826f0178bfe485ae9c4ce272c87467b18922b /eclass | |
parent | Use wxversion to force wxpython-2.6 when multiple slots are available. Bug (diff) | |
download | historical-9d04d0d236bd650aa7c11149ac68668a0d7b4787.tar.gz historical-9d04d0d236bd650aa7c11149ac68668a0d7b4787.tar.bz2 historical-9d04d0d236bd650aa7c11149ac68668a0d7b4787.zip |
Correct a cd command, at least as a work around...there have been
problems, see http://forums.gentoo.org/viewtopic-t-627332-highlight-.html
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/elisp.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/elisp.eclass b/eclass/elisp.eclass index a96e083a8372..e26e49236f50 100644 --- a/eclass/elisp.eclass +++ b/eclass/elisp.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/elisp.eclass,v 1.25 2007/12/04 13:11:15 ulm Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/elisp.eclass,v 1.26 2007/12/07 00:16:24 opfer Exp $ # # Copyright 2007 Christian Faulhammer <opfer@gentoo.org> # Copyright 2002-2003 Matthew Kennedy <mkennedy@gentoo.org> @@ -61,7 +61,7 @@ elisp_pkg_setup() { elisp_src_unpack() { unpack ${A} if [ "${SIMPLE_ELISP}" = 't' ]; then - cd "${S}" && mv ${P}.el ${PN}.el \ + cd "${WORKDIR}" && mv ${P}.el ${PN}.el \ || die "mv ${P}.el ${PN}.el failed" fi } |