[v1b,3/3] Makeconfig: Use spaces consistently before =

Message ID 20230717200220.569481-4-alx@kernel.org
State New
Headers
Series Makeconfig: reflow and other whitespace changes |

Checks

Context Check Description
redhat-pt-bot/TryBot-apply_patch success Patch applied to master at the time it was sent
linaro-tcwg-bot/tcwg_glibc_build--master-arm success Testing passed
redhat-pt-bot/TryBot-32bit fail Patch caused testsuite regressions
linaro-tcwg-bot/tcwg_glibc_build--master-aarch64 success Testing passed
linaro-tcwg-bot/tcwg_glibc_check--master-aarch64 fail Testing failed
linaro-tcwg-bot/tcwg_glibc_check--master-arm fail Testing failed
redhat-pt-bot/TryBot-still_applies warning Patch no longer applies to master

Commit Message

Alejandro Colomar July 17, 2023, 8:02 p.m. UTC
  Make consistent use of spaces.

Signed-off-by: Alejandro Colomar <alx@kernel.org>
---
 Makeconfig | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)
  

Patch

diff --git a/Makeconfig b/Makeconfig
index 7f1e6f11ec..5a9517c004 100644
--- a/Makeconfig
+++ b/Makeconfig
@@ -1077,7 +1077,7 @@  $(if $(filter $(@F),$(patsubst %,%$(1),$(2))), $(no-fortify-source))
 endef
 
 # The program that makes Emacs-style TAGS files.
-ETAGS	:= etags
+ETAGS := etags
 
 # The `xgettext' program for producing .pot files from sources.
 ifndef XGETTEXT
@@ -1109,9 +1109,9 @@  endif
 # but we don't want this echoing done when the user has said
 # he doesn't want to see commands echoed by using -s.
 ifeq ($(silent-make),yes)			# if -s
-+cmdecho	:= echo >/dev/null
++cmdecho := echo >/dev/null
 else						# not -s
-+cmdecho	:= echo
++cmdecho := echo
 endif	   					# -s
 
 # These are the flags given to the compiler to tell
@@ -1119,13 +1119,13 @@  endif	   					# -s
 ifndef	+cflags
 # If `CFLAGS' was defined, use that.
 ifdef		CFLAGS
-+cflags	:= $(filter-out -I%,$(CFLAGS))
++cflags := $(filter-out -I%,$(CFLAGS))
 endif		# CFLAGS
 endif	# +cflags
 
 # If none of the above worked, default to "-g -O".
 ifeq	"$(strip $(+cflags))" ""
-+cflags	:= $(default_cflags)
++cflags := $(default_cflags)
 endif	# $(+cflags) == ""
 
 # Force building with -fno-common because hidden_def, compat_symbol
@@ -1241,7 +1241,7 @@  CPPFLAGS = \
 	$(CPPFLAGS-$(basename $(@F))) \
 	-DTOP_NAMESPACE=glibc
 
-override CFLAGS	= \
+override CFLAGS = \
 	-std=gnu11 \
 	-fgnu89-inline \
 	$(config-extra-cflags) \