summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSai Hari Chandana Kalluri <chandana.kalluri@xilinx.com>2020-06-06 17:08:59 -0700
committerSai Hari Chandana Kalluri <chandana.kalluri@xilinx.com>2020-06-06 17:09:01 -0700
commitf3e04e9a5364a35482d231a417de504890805091 (patch)
treead23486e44d4467a39803f350289847b92eebfd8
parent7759c81140ad401381654123c0c26ee8656d10cc (diff)
downloadmeta-xilinx-f3e04e9a5364a35482d231a417de504890805091.tar.gz
python3-dtc_1.5.1.bb: Explicitly set the path to run make during configure
With current recipe,during build it fails with the following error: xecuting Tasks ERROR: python3-dtc-native-1.5.1-r0 do_configure: Execution of 'x86_64-linux/python3-dtc-native/1.5.1-r0/temp/run.do_configure.26600' failed with exit code 1: make: *** No rule to make target 'version_gen.h'. Stop. WARNING: x86_64-linux/python3-dtc-native/1.5.1-r0/temp/run.do_configure.26600:1 exit 1 from 'do_configure' ERROR: Logfile of failure stored in: x86_64-linux/python3-dtc-native/1.5.1-r0/temp/log.do_configure.26600 Explicitly set the path to change directory into so that the make command is succesful. Signed-off-by: Sai Hari Chandana Kalluri <chandana.kalluri@xilinx.com>
-rw-r--r--meta-xilinx-bsp/recipes-kernel/dtc/python3-dtc_1.5.1.bb2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta-xilinx-bsp/recipes-kernel/dtc/python3-dtc_1.5.1.bb b/meta-xilinx-bsp/recipes-kernel/dtc/python3-dtc_1.5.1.bb
index dc87effa..08e356d4 100644
--- a/meta-xilinx-bsp/recipes-kernel/dtc/python3-dtc_1.5.1.bb
+++ b/meta-xilinx-bsp/recipes-kernel/dtc/python3-dtc_1.5.1.bb
@@ -20,7 +20,7 @@ DEPENDS += "libyaml dtc"
20inherit distutils3 20inherit distutils3
21 21
22do_configure_prepend() { 22do_configure_prepend() {
23 (cd .. ; make version_gen.h ) 23 (cd ${S}/../ ; make version_gen.h )
24} 24}
25 25
26BBCLASSEXTEND = "native nativesdk" 26BBCLASSEXTEND = "native nativesdk"