From 2ab535f7bc54f16fd66b32a37409e0c3b1065eb9 Mon Sep 17 00:00:00 2001 From: Jon Johnson Date: Thu, 18 Jan 2024 14:14:42 -0800 Subject: [PATCH] Add set -x in our makefile to debug sourcedir Signed-off-by: Jon Johnson --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 833ccffad6c..e93382855f4 100644 --- a/Makefile +++ b/Makefile @@ -114,7 +114,7 @@ endef #$(call get-source-dir,ret-variable-for-source-dir,package-dir,package-name) define get-source-dir $(info getting source dir for package $(3) with dir $(2)) - $(1) := $(shell if [[ "." == "$(2)" ]]; then \ + $(1) := $(shell set -x; if [[ "." == "$(2)" ]]; then \ if [[ -d "./$(3)" ]]; then \ echo "--source-dir ./$(3)"; \ fi \