Skip to content

Commit 2684fe3

Browse files
swegenerrobimarko
authored andcommitted
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: openwrt/openwrt#19326 Signed-off-by: Robert Marko <robimarko@gmail.com>
1 parent b5acf84 commit 2684fe3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/target.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -389,7 +389,7 @@ define BuildTargets/DumpCurrent
389389
echo 'Default-Packages: $(DEFAULT_PACKAGES) $(call extra_packages,$(DEFAULT_PACKAGES))'; \
390390
$(DUMPINFO)
391391
$(if $(CUR_SUBTARGET),$(SUBMAKE) -r --no-print-directory -C image -s DUMP=1 SUBTARGET=$(CUR_SUBTARGET))
392-
$(if $(SUBTARGET),,@$(foreach SUBTARGET,$(SUBTARGETS),$(SUBMAKE) -s DUMP=1 SUBTARGET=$(SUBTARGET); ))
392+
$(if $(SUBTARGET),,@$(foreach SUBTARGET,$(SUBTARGETS),$(SUBMAKE) --no-print-directory -s DUMP=1 SUBTARGET=$(SUBTARGET); ))
393393
endef
394394

395395
include $(INCLUDE_DIR)/kernel.mk

0 commit comments

Comments
 (0)