From afeea8a616ea43553a7cd6c160d5f8b23ddcfa38 Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Thu, 21 Mar 2013 14:25:18 +0000 Subject: pth: Fix case where ${B} != ${S} Ensure the autotools commands are executed in ${S} to allow out of tree builds to work. Signed-off-by: Richard Purdie --- meta/recipes-support/pth/pth_2.0.7.bb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'meta/recipes-support/pth') diff --git a/meta/recipes-support/pth/pth_2.0.7.bb b/meta/recipes-support/pth/pth_2.0.7.bb index fc9ed16aca..8cbab7d822 100644 --- a/meta/recipes-support/pth/pth_2.0.7.bb +++ b/meta/recipes-support/pth/pth_2.0.7.bb @@ -23,7 +23,7 @@ PARALLEL_MAKE="" inherit autotools binconfig pkgconfig do_configure() { - gnu-configize - autoconf + ( cd ${S}; gnu-configize ) + ( cd ${S}; autoconf ) oe_runconf } -- cgit 1.2.3-korg