diff options
| author | Sven Wegener | 2025-07-06 17:28:36 +0000 |
|---|---|---|
| committer | Robert Marko | 2025-07-30 21:31:26 +0000 |
| commit | 2684fe31d02e2c88ead04bca7c464e7906682c3c (patch) | |
| tree | 1f4707481aa5478db2bba317ef0c66eebdf583d4 | |
| parent | b5acf84635e61d8414d8398461f48cea208d5ce9 (diff) | |
| download | openwrt-2684fe31d02e2c88ead04bca7c464e7906682c3c.tar.gz | |
build: use --no-print-directory for dumping subtargets
Or else we end up with "Entering directory" and "Leaving directory" from make in tmp/.targetinfo
Signed-off-by: Sven Wegener <sven.wegener@stealer.net>
Link: https://github.com/openwrt/openwrt/pull/19326
Signed-off-by: Robert Marko <robimarko@gmail.com>
| -rw-r--r-- | include/target.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/target.mk b/include/target.mk index b6c5e29d45..8ea6fff299 100644 --- a/include/target.mk +++ b/include/target.mk @@ -389,7 +389,7 @@ define BuildTargets/DumpCurrent echo 'Default-Packages: $(DEFAULT_PACKAGES) $(call extra_packages,$(DEFAULT_PACKAGES))'; \ $(DUMPINFO) $(if $(CUR_SUBTARGET),$(SUBMAKE) -r --no-print-directory -C image -s DUMP=1 SUBTARGET=$(CUR_SUBTARGET)) - $(if $(SUBTARGET),,@$(foreach SUBTARGET,$(SUBTARGETS),$(SUBMAKE) -s DUMP=1 SUBTARGET=$(SUBTARGET); )) + $(if $(SUBTARGET),,@$(foreach SUBTARGET,$(SUBTARGETS),$(SUBMAKE) --no-print-directory -s DUMP=1 SUBTARGET=$(SUBTARGET); )) endef include $(INCLUDE_DIR)/kernel.mk |