[oe-commits] Wenzong Fan : autotools.bbclass: using relative paths for acpaths

git at git.openembedded.org git at git.openembedded.org
Thu Sep 27 15:37:00 UTC 2012


Module: openembedded-core.git
Branch: master
Commit: aa66ef6598c84231577d139ec7be413e73fac2b1
URL:    http://git.openembedded.org/?p=openembedded-core.git&a=commit;h=aa66ef6598c84231577d139ec7be413e73fac2b1

Author: Wenzong Fan <wenzong.fan at windriver.com>
Date:   Thu Sep 27 16:23:37 2012 +0800

autotools.bbclass: using relative paths for acpaths

Fix autotools.bbclass to use relative paths for acpaths instead of
absolute ones. Since absolute paths may cause potential autoreconf
error like:

    Can't exec "/bin/sh": Argument list too long ...

This error occurs while building coreutils with long TMPDIR, because
it has bunch of m4 files need to be expanded.

[YOCTO #2766]

Signed-off-by: Wenzong Fan <wenzong.fan at windriver.com>
Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>

---

 meta/classes/autotools.bbclass |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/meta/classes/autotools.bbclass b/meta/classes/autotools.bbclass
index e4e034b..874e01d 100644
--- a/meta/classes/autotools.bbclass
+++ b/meta/classes/autotools.bbclass
@@ -130,7 +130,8 @@ autotools_do_configure() {
 		if [ x"${acpaths}" = xdefault ]; then
 			acpaths=
 			for i in `find ${S} -maxdepth 2 -name \*.m4|grep -v 'aclocal.m4'| \
-				grep -v 'acinclude.m4' | sed -e 's,\(.*/\).*$,\1,'|sort -u`; do
+				grep -v 'acinclude.m4' | sed -e 's,\(.*/\).*$,\1,'|sort -u| \
+				sed -e 's,${S},\.,'`; do
 				acpaths="$acpaths -I $i"
 			done
 		else





More information about the Openembedded-commits mailing list