From 62a198c0dbe2ccbb69d5872198b6a2f5deed5b2c Mon Sep 17 00:00:00 2001 From: "Yann E. MORIN" Date: Wed, 27 Dec 2017 00:20:45 +0100 Subject: 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" Signed-off-by: Thomas Petazzoni --- fs/ubifs/ubifs.mk | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'fs') 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 -- cgit v1.2.1