diff options
author | Sai Hari Chandana Kalluri <chandana.kalluri@xilinx.com> | 2020-06-06 17:08:59 -0700 |
---|---|---|
committer | Sai Hari Chandana Kalluri <chandana.kalluri@xilinx.com> | 2020-06-06 17:09:01 -0700 |
commit | f3e04e9a5364a35482d231a417de504890805091 (patch) | |
tree | ad23486e44d4467a39803f350289847b92eebfd8 | |
parent | 7759c81140ad401381654123c0c26ee8656d10cc (diff) | |
download | meta-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.bb | 2 |
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" | |||
20 | inherit distutils3 | 20 | inherit distutils3 |
21 | 21 | ||
22 | do_configure_prepend() { | 22 | do_configure_prepend() { |
23 | (cd .. ; make version_gen.h ) | 23 | (cd ${S}/../ ; make version_gen.h ) |
24 | } | 24 | } |
25 | 25 | ||
26 | BBCLASSEXTEND = "native nativesdk" | 26 | BBCLASSEXTEND = "native nativesdk" |