summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTom Rini <tom_rini@mentor.com>2011-01-12 07:45:25 -0700
committerTom Rini <tom_rini@mentor.com>2011-01-12 07:45:51 -0700
commit223ce2db77021693a627c8d421168f4795fb5948 (patch)
treeb40c322dfdea36b46a8be73f0e3b8ac7fcf4da39
parent4735968287f418418b7d4836131d89a99ca30e3a (diff)
downloadopenembedded-223ce2db77021693a627c8d421168f4795fb5948.tar.gz
apache2: Fix invoking buildconf
It may not have execute set so start it via sh Signed-off-by: Tom Rini <tom_rini@mentor.com>
-rw-r--r--recipes/apache2/apache2_2.2.14.bb2
1 files changed, 1 insertions, 1 deletions
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
}