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-08-11 23:47:26 -0700
commit59767842a96973c5aa422c4971d9bea089eb6c22 (patch)
treeab0f53df65a5b96c5d19c63de98c26dc8ffeb799
parentb47f1d1bebf432a58640126f656fbf54907d4a58 (diff)
downloadmeta-xilinx-59767842a96973c5aa422c4971d9bea089eb6c22.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"