Skip to content

Commit

Permalink
Merge pull request #11407 from jonjohnsonjr/debug-makefile
Browse files Browse the repository at this point in the history
Add set -x in our makefile to debug sourcedir
  • Loading branch information
ajayk authored Jan 18, 2024
2 parents 1e4eb73 + 2ab535f commit de91acf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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 \
Expand Down

0 comments on commit de91acf

Please sign in to comment.