diff options
author | Mamoru Komachi <usata@gentoo.org> | 2004-06-24 07:11:54 +0000 |
---|---|---|
committer | Mamoru Komachi <usata@gentoo.org> | 2004-06-24 07:11:54 +0000 |
commit | f41d70528fd073806478d7af655d7918c1f1403f (patch) | |
tree | c1fb2c675ea7fed231de6b6c2af1d213bbf21af0 /eclass | |
parent | Stable x86 amd64. (Manifest recommit) (diff) | |
download | gentoo-2-f41d70528fd073806478d7af655d7918c1f1403f.tar.gz gentoo-2-f41d70528fd073806478d7af655d7918c1f1403f.tar.bz2 gentoo-2-f41d70528fd073806478d7af655d7918c1f1403f.zip |
`cd ${S}` before applying patches; suggested by Michael Kohl <citizen428@cargal.org>
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/ruby.eclass | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/eclass/ruby.eclass b/eclass/ruby.eclass index 7247e758821d..aa380f76f60f 100644 --- a/eclass/ruby.eclass +++ b/eclass/ruby.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/ruby.eclass,v 1.33 2004/05/23 12:42:42 usata Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/ruby.eclass,v 1.34 2004/06/24 07:11:54 usata Exp $ # # Author: Mamoru KOMACHI <usata@gentoo.org> # @@ -58,6 +58,7 @@ DEPEND="virtual/ruby" ruby_src_unpack() { unpack ${A} + cd ${S} # apply bulk patches if [[ -n "${PATCHES}" ]] ; then for p in ${PATCHES} ; do |