git.openpandora.org
/
openembedded.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4735968
)
apache2: Fix invoking buildconf
author
Tom Rini
<tom_rini@mentor.com>
Wed, 12 Jan 2011 14:45:25 +0000
(07:45 -0700)
committer
Tom Rini
<tom_rini@mentor.com>
Wed, 12 Jan 2011 14:45:51 +0000
(07:45 -0700)
It may not have execute set so start it via sh
Signed-off-by: Tom Rini <tom_rini@mentor.com>
recipes/apache2/apache2_2.2.14.bb
patch
|
blob
|
history
diff --git
a/recipes/apache2/apache2_2.2.14.bb
b/recipes/apache2/apache2_2.2.14.bb
index
b39f14c
..
a78c373
100644
(file)
--- 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
}