summaryrefslogtreecommitdiffstats
path: root/conf/machine/include/machine-xilinx-board.inc
diff options
context:
space:
mode:
authorNathan Rossi <nathan@nathanrossi.com>2015-11-26 15:48:04 +1000
committerNathan Rossi <nathan@nathanrossi.com>2015-11-26 15:48:04 +1000
commit9fc69a54a6c8f78f310dc3c765b1ede4811a9821 (patch)
tree14264af6354cd13588ddb226613736bf7c15f8dc /conf/machine/include/machine-xilinx-board.inc
parent34736392307c45c25176a135edde672b8ca5062e (diff)
downloadmeta-xilinx-9fc69a54a6c8f78f310dc3c765b1ede4811a9821.tar.gz
Fix up use of '_append +='
The use of '_append' and '+=' together is considered bad practice within recipes. It is preferred to explicitly add the preceeding spaces where they are applicable instead of using the '+=' to achieve the same result. Change all the uses of '_append +=' to match the recommended pattern, adding in spaces where explicitly required. Signed-off-by: Nathan Rossi <nathan@nathanrossi.com>
Diffstat (limited to 'conf/machine/include/machine-xilinx-board.inc')
-rw-r--r--conf/machine/include/machine-xilinx-board.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/conf/machine/include/machine-xilinx-board.inc b/conf/machine/include/machine-xilinx-board.inc
index 654e3ebb..3447731e 100644
--- a/conf/machine/include/machine-xilinx-board.inc
+++ b/conf/machine/include/machine-xilinx-board.inc
@@ -2,7 +2,7 @@
2 2
3EXTRA_IMAGEDEPENDS += "virtual/bootloader" 3EXTRA_IMAGEDEPENDS += "virtual/bootloader"
4 4
5MACHINE_ESSENTIAL_EXTRA_RDEPENDS_append_microblaze += "device-tree" 5MACHINE_ESSENTIAL_EXTRA_RDEPENDS_append_microblaze = " device-tree"
6 6
7IMAGE_BOOT_FILES ?= "${KERNEL_IMAGETYPE} ${UBOOT_BINARY}" 7IMAGE_BOOT_FILES ?= "${KERNEL_IMAGETYPE} ${UBOOT_BINARY}"
8 8