Applied. -----Original Message----- From: [email protected] <[email protected]> On Behalf Of Jean-Francois Dagenais Sent: Tuesday, June 25, 2019 1:41 PM To: [email protected]; git <[email protected]> Subject: [meta-xilinx] [meta-xilinx-tools][2019.1][patch 1/2] fpga-manager-util: don't overwrite xsctyaml DEPENDS
The hard assignment of DEPENDS removes what xsctyaml.bbclass assigned. The result is that do_create_yaml fails at import yaml. (Exception: ImportError: No module named 'yaml') Signed-off-by: Jean-Francois Dagenais <[email protected]> --- recipes-bsp/fpga-manager-util/fpga-manager-util_1.0.bb | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/recipes-bsp/fpga-manager-util/fpga-manager-util_1.0.bb b/recipes-bsp/fpga-manager-util/fpga-manager-util_1.0.bb index 782361d..bb6f725 100644 --- a/recipes-bsp/fpga-manager-util/fpga-manager-util_1.0.bb +++ b/recipes-bsp/fpga-manager-util/fpga-manager-util_1.0.bb @@ -23,7 +23,12 @@ SRC_URI_append = " \ file://multipleHDF.tcl \ file://base-hsi.tcl \ " -DEPENDS = "virtual/hdf virtual/bitstream virtual/dtb dtc-native" +DEPENDS += "\ + virtual/hdf \ + virtual/bitstream \ + virtual/dtb \ + dtc-native \ +" PACKAGE_ARCH ?= "${MACHINE_ARCH}" COMPATIBLE_MACHINE ?= "^$" -- 2.11.0 -- _______________________________________________ meta-xilinx mailing list [email protected] https://lists.yoctoproject.org/listinfo/meta-xilinx -- _______________________________________________ meta-xilinx mailing list [email protected] https://lists.yoctoproject.org/listinfo/meta-xilinx
