diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-09-27 17:56:56 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-09-27 17:57:58 +0100 |
commit | 3c58f92d46e32c40b80575f14e0f6f66c9920c66 (patch) | |
tree | 9223fb76b43fc3c4fddc63e037192f22274465a5 /meta | |
parent | f40bfd2e5f91a3c699833f19cec435a9b897f4b5 (diff) | |
download | poky-3c58f92d46e32c40b80575f14e0f6f66c9920c66.tar.gz |
Revert "autotools.bbclass: using relative paths for acpaths"
This reverts commit aa66ef6598c84231577d139ec7be413e73fac2b1 since
bdwgc-native fails to build after it. Anything which runs with a
sub-configure will fail after this change. It therefore needs
rethinking.
(From OE-Core rev: f95a9e2c292a1551861220270838cf1eaaba85b9)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/classes/autotools.bbclass | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/meta/classes/autotools.bbclass b/meta/classes/autotools.bbclass index 874e01dc74..e4e034b623 100644 --- a/meta/classes/autotools.bbclass +++ b/meta/classes/autotools.bbclass | |||
@@ -130,8 +130,7 @@ autotools_do_configure() { | |||
130 | if [ x"${acpaths}" = xdefault ]; then | 130 | if [ x"${acpaths}" = xdefault ]; then |
131 | acpaths= | 131 | acpaths= |
132 | for i in `find ${S} -maxdepth 2 -name \*.m4|grep -v 'aclocal.m4'| \ | 132 | for i in `find ${S} -maxdepth 2 -name \*.m4|grep -v 'aclocal.m4'| \ |
133 | grep -v 'acinclude.m4' | sed -e 's,\(.*/\).*$,\1,'|sort -u| \ | 133 | grep -v 'acinclude.m4' | sed -e 's,\(.*/\).*$,\1,'|sort -u`; do |
134 | sed -e 's,${S},\.,'`; do | ||
135 | acpaths="$acpaths -I $i" | 134 | acpaths="$acpaths -I $i" |
136 | done | 135 | done |
137 | else | 136 | else |