summaryrefslogtreecommitdiffstats
path: root/fs
diff options
context:
space:
mode:
authorYann E. MORIN <yann.morin.1998@free.fr>2017-12-27 00:20:45 +0100
committerThomas Petazzoni <thomas.petazzoni@free-electrons.com>2017-12-27 22:53:26 +0100
commit62a198c0dbe2ccbb69d5872198b6a2f5deed5b2c (patch)
treeeeaed642a48fdd90403b213365672853e6ad3b2e /fs
parent187d24701ded6bec598e4aec272033f33f158de7 (diff)
downloadbuildroot-62a198c0dbe2ccbb69d5872198b6a2f5deed5b2c.tar.gz
buildroot-62a198c0dbe2ccbb69d5872198b6a2f5deed5b2c.zip
fs/ubifs: split long line, use simple asignment
This line has been sitting there unchanged for years now, but it does not follow current best pratices, that is: - do not use imediate assignment, - split lines longer than ~80 chars. Fix that. Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'fs')
-rw-r--r--fs/ubifs/ubifs.mk5
1 files changed, 4 insertions, 1 deletions
diff --git a/fs/ubifs/ubifs.mk b/fs/ubifs/ubifs.mk
index 7b2b0fb2cc..4f45acdc4a 100644
--- a/fs/ubifs/ubifs.mk
+++ b/fs/ubifs/ubifs.mk
@@ -4,7 +4,10 @@
#
################################################################################
-UBIFS_OPTS := -e $(BR2_TARGET_ROOTFS_UBIFS_LEBSIZE) -c $(BR2_TARGET_ROOTFS_UBIFS_MAXLEBCNT) -m $(BR2_TARGET_ROOTFS_UBIFS_MINIOSIZE)
+UBIFS_OPTS = \
+ -e $(BR2_TARGET_ROOTFS_UBIFS_LEBSIZE) \
+ -c $(BR2_TARGET_ROOTFS_UBIFS_MAXLEBCNT) \
+ -m $(BR2_TARGET_ROOTFS_UBIFS_MINIOSIZE)
ifeq ($(BR2_TARGET_ROOTFS_UBIFS_RT_ZLIB),y)
UBIFS_OPTS += -x zlib
OpenPOWER on IntegriCloud