diff options
author | 2005-08-29 10:09:07 +0000 | |
---|---|---|
committer | 2005-08-29 10:09:07 +0000 | |
commit | 38b53f82cd7ee6b20b28ba4663d52df73a31dba2 (patch) | |
tree | 40da66a9cba5fb12ab24b3207a1d7823cac740a5 /eclass/autotools.eclass | |
parent | Added patch to avoid adding extra cflags if user doesn't provide them. Remove... (diff) | |
download | historical-38b53f82cd7ee6b20b28ba4663d52df73a31dba2.tar.gz historical-38b53f82cd7ee6b20b28ba4663d52df73a31dba2.tar.bz2 historical-38b53f82cd7ee6b20b28ba4663d52df73a31dba2.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} |