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-08-11 23:47:26 -0700 |
| commit | 59767842a96973c5aa422c4971d9bea089eb6c22 (patch) | |
| tree | ab0f53df65a5b96c5d19c63de98c26dc8ffeb799 | |
| parent | b47f1d1bebf432a58640126f656fbf54907d4a58 (diff) | |
| download | meta-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.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" |
