|
@@ -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; \
|
|
|
|
- DIR=$(KBUILD_EXTMOD); \
|
|
|
|
- cd $${DIR:-$(objtree)}; \
|
|
|
|
- OUT=$$PWD/.$$$$.null; \
|
|
|
|
- if $(1) >/dev/null 2>&1; \
|
|
|
|
- then echo "$(2)"; \
|
|
|
|
- else echo "$(3)"; \
|
|
|
|
- fi; \
|
|
|
|
- rm -f $$OUT))
|
|
|
|
|
|
+$(shell set -e; \
|
|
|
|
+ DIR=$(KBUILD_EXTMOD); \
|
|
|
|
+ cd $${DIR:-$(objtree)}; \
|
|
|
|
+ OUT=$$PWD/.$$$$.null; \
|
|
|
|
+ if $(1) >/dev/null 2>&1; \
|
|
|
|
+ then echo "$(2)"; \
|
|
|
|
+ else echo "$(3)"; \
|
|
|
|
+ fi; \
|
|
|
|
+ rm -f $$OUT)
|
|
endef
|
|
endef
|
|
|
|
|
|
# as-option
|
|
# as-option
|