From: Tom Rini Date: Wed, 12 Jan 2011 14:45:25 +0000 (-0700) Subject: apache2: Fix invoking buildconf X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=223ce2db77021693a627c8d421168f4795fb5948;p=openembedded.git apache2: Fix invoking buildconf It may not have execute set so start it via sh Signed-off-by: Tom Rini --- diff --git a/recipes/apache2/apache2_2.2.14.bb b/recipes/apache2/apache2_2.2.14.bb index b39f14ca5a..a78c373c01 100644 --- a/recipes/apache2/apache2_2.2.14.bb +++ b/recipes/apache2/apache2_2.2.14.bb @@ -95,7 +95,7 @@ do_configure_prepend() { } do_configure() { - ( cd srclib/apr; ./buildconf ) + ( cd srclib/apr; sh ./buildconf ) oe_runconf }