From 28f57bb863ba48df054cec0057c844bf23d5969f Mon Sep 17 00:00:00 2001 From: Arnout Vandecappelle Date: Sun, 12 Jul 2015 16:35:27 +0200 Subject: [PATCH] linux: use backtick instead of $(shell ...) make function Verified that LINUX_VERSION_PROBED is only used in "-quoted commands (actually, usually it's not quoted). Signed-off-by: Arnout Vandecappelle (Essensium/Mind) Signed-off-by: Thomas Petazzoni --- linux/linux.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/linux/linux.mk b/linux/linux.mk index 3ea564f56c..375a9e1e11 100644 --- a/linux/linux.mk +++ b/linux/linux.mk @@ -76,7 +76,7 @@ LINUX_MAKE_ENV = \ # Get the real Linux version, which tells us where kernel modules are # going to be installed in the target filesystem. -LINUX_VERSION_PROBED = $(shell $(MAKE) $(LINUX_MAKE_FLAGS) -C $(LINUX_DIR) --no-print-directory -s kernelrelease) +LINUX_VERSION_PROBED = `$(MAKE) $(LINUX_MAKE_FLAGS) -C $(LINUX_DIR) --no-print-directory -s kernelrelease` ifeq ($(BR2_LINUX_KERNEL_USE_INTREE_DTS),y) KERNEL_DTS_NAME = $(call qstrip,$(BR2_LINUX_KERNEL_INTREE_DTS_NAME)) -- 2.30.2