summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMark Hatle <mark.hatle@xilinx.com>2020-04-09 14:34:57 -0700
committerMark Hatle <mark.hatle@xilinx.com>2020-04-09 14:37:02 -0700
commitf33fd6fe0ba8288bc512e9ac67b7700687c599b2 (patch)
tree9d9051a827a4fa4627345944bdf64502e951d5d1
parent3e8e3c8daf6312b7d41fcf0df7a3c733476477ae (diff)
downloadmeta-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.bb2
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"
9SRCBRANCHARG = "${@['nobranch=1', 'branch=${PYNQBRANCH}'][d.getVar('PYNQBRANCH', True) != '']}" 9SRCBRANCHARG = "${@['nobranch=1', 'branch=${PYNQBRANCH}'][d.getVar('PYNQBRANCH', True) != '']}"
10PYNQURI ?= "git://github.com/Xilinx/PYNQ.git;protocol=https" 10PYNQURI ?= "git://github.com/Xilinx/PYNQ.git;protocol=https"
11 11
12SRC_URI ?= "${PYNQURI};${SRCBRANCHARG}" 12SRC_URI = "${PYNQURI};${SRCBRANCHARG}"
13 13
14SRCREV ?= "3d659d374701b7c34fa702e7aa23f71f9113f826" 14SRCREV ?= "3d659d374701b7c34fa702e7aa23f71f9113f826"
15 15