diff options
| author | 2024-08-02 22:00:02 +0000 | |
|---|---|---|
| committer | 2024-08-28 20:21:31 +0000 | |
| commit | 248580cb4149ae8bfdc2036080f33c97f55a189a (patch) | |
| tree | 218e64c50a95675c36fd5efdc911db124c4f95c5 | |
| parent | 6dfeb795e0f5a5fe8651e4db5c2df6a90beaca0c (diff) | |
Add the list of makefiles that were also included by product config to dumpconfig.
In this entry, the first list of files is the inherit-product stack, and
the second one is the list of files included by the file at the top of
the stack that just finished processing
Test: build/make/ci/dump_product_config
Change-Id: I826b1ec6fa1319b8f0cdfaacc6ccf999ce93d9f1
| -rw-r--r-- | core/dumpconfig.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/dumpconfig.mk b/core/dumpconfig.mk index 8991d6e0d4..eb4c822dc5 100644 --- a/core/dumpconfig.mk +++ b/core/dumpconfig.mk @@ -68,7 +68,7 @@ endef # Args: # $(1): include stack define dump-import-done -$(eval $(file >> $(DUMPCONFIG_FILE),imported,$(strip $(1)))) +$(eval $(file >> $(DUMPCONFIG_FILE),imported,$(strip $(1)),$(filter-out $(1),$(MAKEFILE_LIST)))) endef # Args: |