Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit b892afd1 authored by Linus Torvalds's avatar Linus Torvalds
Browse files

kbuild: fix space for good (take 103)



Michal Ostrowski points out what the real problem was: the spaces at the
start of the definition of the 'checker-shell' make function.

Cc: Michal Ostrowski <mostrows@watson.ibm.com>
Acked-by: default avatarDavid Miller <davem@davemloft.net>
Acked-by: default avatarGeert Uytterhoeven <Geert.Uytterhoeven@sonycom.com>
Acked-by: default avatarOleg Verych <olecom@flower.upol.cz>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent c4184f11
Loading
Loading
Loading
Loading
+9 −10
Original line number Diff line number Diff line
@@ -60,7 +60,6 @@ endef
# Usage: option = $(call checker-shell,$(CC)...-o $$OUT,option-ok,otherwise)
# Exit code chooses option. $$OUT is safe location for needless output.
define checker-shell
 $(strip
$(shell set -e; \
  DIR=$(KBUILD_EXTMOD); \
  cd $${DIR:-$(objtree)}; \
@@ -69,7 +68,7 @@ define checker-shell
    then echo "$(2)"; \
    else echo "$(3)"; \
  fi; \
    rm -f $$OUT))
  rm -f $$OUT)
endef

# as-option