diff options
| author | Mark Hatle <mark.hatle@xilinx.com> | 2020-04-09 14:34:57 -0700 |
|---|---|---|
| committer | Mark Hatle <mark.hatle@xilinx.com> | 2020-04-09 14:37:02 -0700 |
| commit | f33fd6fe0ba8288bc512e9ac67b7700687c599b2 (patch) | |
| tree | 9d9051a827a4fa4627345944bdf64502e951d5d1 | |
| parent | 3e8e3c8daf6312b7d41fcf0df7a3c733476477ae (diff) | |
| download | meta-xilinx-f33fd6fe0ba8288bc512e9ac67b7700687c599b2.tar.gz | |
libcma: Fix SRC_URI definition
Issue: CR-1061547
The SRC_URI must be specified in each recipe with '=' or a similar.
?= won't work, as a default (empty) value is defined in bitbake.conf
Signed-off-by: Mark Hatle <mark.hatle@xilinx.com>
| -rw-r--r-- | meta-xilinx-pynq/recipes-support/libcma/libcma_1.0.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta-xilinx-pynq/recipes-support/libcma/libcma_1.0.bb b/meta-xilinx-pynq/recipes-support/libcma/libcma_1.0.bb index 44857256..9d9a2b38 100644 --- a/meta-xilinx-pynq/recipes-support/libcma/libcma_1.0.bb +++ b/meta-xilinx-pynq/recipes-support/libcma/libcma_1.0.bb | |||
| @@ -9,7 +9,7 @@ PYNQBRANCH ?= "image_v2.4" | |||
| 9 | SRCBRANCHARG = "${@['nobranch=1', 'branch=${PYNQBRANCH}'][d.getVar('PYNQBRANCH', True) != '']}" | 9 | SRCBRANCHARG = "${@['nobranch=1', 'branch=${PYNQBRANCH}'][d.getVar('PYNQBRANCH', True) != '']}" |
| 10 | PYNQURI ?= "git://github.com/Xilinx/PYNQ.git;protocol=https" | 10 | PYNQURI ?= "git://github.com/Xilinx/PYNQ.git;protocol=https" |
| 11 | 11 | ||
| 12 | SRC_URI ?= "${PYNQURI};${SRCBRANCHARG}" | 12 | SRC_URI = "${PYNQURI};${SRCBRANCHARG}" |
| 13 | 13 | ||
| 14 | SRCREV ?= "3d659d374701b7c34fa702e7aa23f71f9113f826" | 14 | SRCREV ?= "3d659d374701b7c34fa702e7aa23f71f9113f826" |
| 15 | 15 | ||
