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: David Miller <davem@davemloft.net>
Acked-by: Geert Uytterhoeven <Geert.Uytterhoeven@sonycom.com>
Acked-by: Oleg Verych <olecom@flower.upol.cz>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
Linus Torvalds 2007-02-08 08:16:44 -08:00
parent c4184f117a
commit b892afd1e6

View File

@ -60,16 +60,15 @@ endef
# Usage: option = $(call checker-shell,$(CC)...-o $$OUT,option-ok,otherwise) # Usage: option = $(call checker-shell,$(CC)...-o $$OUT,option-ok,otherwise)
# Exit code chooses option. $$OUT is safe location for needless output. # Exit code chooses option. $$OUT is safe location for needless output.
define checker-shell define checker-shell
$(strip $(shell set -e; \
$(shell set -e; \ DIR=$(KBUILD_EXTMOD); \
DIR=$(KBUILD_EXTMOD); \ cd $${DIR:-$(objtree)}; \
cd $${DIR:-$(objtree)}; \ OUT=$$PWD/.$$$$.null; \
OUT=$$PWD/.$$$$.null; \ if $(1) >/dev/null 2>&1; \
if $(1) >/dev/null 2>&1; \ then echo "$(2)"; \
then echo "$(2)"; \ else echo "$(3)"; \
else echo "$(3)"; \ fi; \
fi; \ rm -f $$OUT)
rm -f $$OUT))
endef endef
# as-option # as-option