diff options
author | Koen Kooi <koen@openembedded.org> | 2008-03-19 20:17:40 +0000 |
---|---|---|
committer | Koen Kooi <koen@openembedded.org> | 2008-03-19 20:17:40 +0000 |
commit | e0c07ebd9158c035921040c1641fb7f80427a895 (patch) | |
tree | 8b7c077b3acbae1f7b6b014b527b4ce6b5660524 /classes/native.bbclass | |
parent | f1204894470e72800bcb7654ba5d346066fd6a1a (diff) |
native, autotools bbclass: check if bindir exists before trying to access it
* hardcoded since native.bbclass redefines ${bindir} and friends :(
Diffstat (limited to 'classes/native.bbclass')
-rw-r--r-- | classes/native.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/classes/native.bbclass b/classes/native.bbclass index aa1d4b6510..ec9ca6bef3 100644 --- a/classes/native.bbclass +++ b/classes/native.bbclass @@ -80,7 +80,7 @@ do_stage () { then oe_runmake install else - AUTOTOOLS_NATIVE_STAGE_BINARIES = "1" + export AUTOTOOLS_NATIVE_STAGE_BINARIES="1" autotools_stage_all fi fi |