summaryrefslogtreecommitdiff
path: root/eclass
diff options
context:
space:
mode:
authorDonnie Berkholz <dberkholz@gentoo.org>2006-08-28 16:07:30 +0000
committerDonnie Berkholz <dberkholz@gentoo.org>2006-08-28 16:07:30 +0000
commitd306958d455c731037f959870770c066c3caefd1 (patch)
tree551b72849bd3e9a83b874c3431e8697e7831df3f /eclass
parentAdded nimage, part of narray package (diff)
downloadgentoo-2-d306958d455c731037f959870770c066c3caefd1.tar.gz
gentoo-2-d306958d455c731037f959870770c066c3caefd1.tar.bz2
gentoo-2-d306958d455c731037f959870770c066c3caefd1.zip
Fix for the case where the autotools files are somewhere other than $S.
Diffstat (limited to 'eclass')
-rw-r--r--eclass/x-modular.eclass4
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/x-modular.eclass b/eclass/x-modular.eclass
index d30cc2142d31..95dc5168bd08 100644
--- a/eclass/x-modular.eclass
+++ b/eclass/x-modular.eclass
@@ -1,6 +1,6 @@
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/x-modular.eclass,v 1.73 2006/08/21 00:22:52 dberkholz Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/x-modular.eclass,v 1.74 2006/08/28 16:07:30 dberkholz Exp $
#
# Author: Donnie Berkholz <spyderous@gentoo.org>
#
@@ -252,7 +252,7 @@ x-modular_reconf_source() {
if [[ "${SNAPSHOT}" = "yes" ]]
then
# If possible, generate configure if it doesn't exist
- if [ -f "${S}/configure.ac" ]
+ if [ -f "./configure.ac" ]
then
eautoreconf
fi