From: Cody P Schafer Date: Thu, 4 May 2017 17:50:41 +0000 (-0400) Subject: cmake.bbclass: remove unneded cd ${B} X-Git-Tag: uninative-1.7~900 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=c5da7a3637b0eb8ec5b7368c7ac732d802a703f9;p=openembedded-core.git cmake.bbclass: remove unneded cd ${B} The default dir for do_compile & do_configure is already ${B}, no need to cd (other than broken appends) CC: Andre McCurdy Signed-off-by: Cody P Schafer Signed-off-by: Ross Burton --- diff --git a/meta/classes/cmake.bbclass b/meta/classes/cmake.bbclass index 12df617ad8..8b5f18d8e0 100644 --- a/meta/classes/cmake.bbclass +++ b/meta/classes/cmake.bbclass @@ -135,12 +135,10 @@ cmake_do_configure() { do_compile[progress] = "percent" cmake_do_compile() { - cd ${B} base_do_compile VERBOSE=1 } cmake_do_install() { - cd ${B} oe_runmake 'DESTDIR=${D}' install }