diff options
author | Diego Elio Pettenò <flameeyes@gentoo.org> | 2005-08-29 10:09:07 +0000 |
---|---|---|
committer | Diego Elio Pettenò <flameeyes@gentoo.org> | 2005-08-29 10:09:07 +0000 |
commit | d47e2ee063342d4cc25ef09414a4fc9de4fcb610 (patch) | |
tree | fd6e5b23e5b74eb7a3802e513cd8c5b06cc6c3a7 /eclass/autotools.eclass | |
parent | Added patch to avoid adding extra cflags if user doesn't provide them. Remove... (diff) | |
download | gentoo-2-d47e2ee063342d4cc25ef09414a4fc9de4fcb610.tar.gz gentoo-2-d47e2ee063342d4cc25ef09414a4fc9de4fcb610.tar.bz2 gentoo-2-d47e2ee063342d4cc25ef09414a4fc9de4fcb610.zip |
-I argument must not be enclosed in quotes.
Diffstat (limited to 'eclass/autotools.eclass')
-rw-r--r-- | eclass/autotools.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/autotools.eclass b/eclass/autotools.eclass index 36e748ef1d6e..87991cf66889 100644 --- a/eclass/autotools.eclass +++ b/eclass/autotools.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/autotools.eclass,v 1.12 2005/08/28 17:26:33 azarah Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/autotools.eclass,v 1.13 2005/08/29 10:09:07 flameeyes Exp $ # # Author: Diego Pettenò <flameeyes@gentoo.org> # Enhancements: Martin Schlemmer <azarah@gentoo.org> @@ -78,7 +78,7 @@ autotools_get_subdirs() { eaclocal() { local aclocal_opts - [[ -n ${M4DIR} ]] && aclocal_opts="-I \"${M4DIR}\"" + [[ -n ${M4DIR} ]] && aclocal_opts="-I ${M4DIR}" [[ -f aclocal.m4 && -n $(grep -e 'generated.*by aclocal' aclocal.m4) ]] && \ autotools_run_tool aclocal "$@" ${aclocal_opts} |