summaryrefslogtreecommitdiffstats
path: root/classes/autotools.bbclass
diff options
context:
space:
mode:
authorRichard Purdie <rpurdie@linux.intel.com>2009-10-30 02:43:12 +0000
committerRichard Purdie <rpurdie@linux.intel.com>2009-11-09 12:55:02 +0000
commitf6c3cb05c0ef1836a3146a39dc40cbee367486e8 (patch)
treeb0833421e0c34d6c3773ce482b2823b9ed8e7b61 /classes/autotools.bbclass
parent6f481bcc549751aa1d7017de8c77a7606a74c468 (diff)
downloadopenembedded-f6c3cb05c0ef1836a3146a39dc40cbee367486e8.tar.gz
autotools.bbclass: Create m4 directory earlier avoding issues with intltoolize (from Poky)
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
Diffstat (limited to 'classes/autotools.bbclass')
-rw-r--r--classes/autotools.bbclass2
1 files changed, 1 insertions, 1 deletions
diff --git a/classes/autotools.bbclass b/classes/autotools.bbclass
index b7a91693e1..45b269f4fd 100644
--- a/classes/autotools.bbclass
+++ b/classes/autotools.bbclass
@@ -121,12 +121,12 @@ autotools_do_configure() {
echo "no" | glib-gettextize --force --copy
fi
fi
+ mkdir -p m4
if grep "^[[:space:]]*[AI][CT]_PROG_INTLTOOL" $CONFIGURE_AC >/dev/null; then
oenote Executing intltoolize --copy --force --automake
intltoolize --copy --force --automake
fi
oenote Executing autoreconf --verbose --install --force ${EXTRA_AUTORECONF} $acpaths
- mkdir -p m4
autoreconf -Wcross --verbose --install --force ${EXTRA_AUTORECONF} $acpaths || oefatal "autoreconf execution failed."
cd $olddir
fi