diff options
author | 2019-05-07 22:52:29 +0200 | |
---|---|---|
committer | 2019-05-07 23:06:05 +0200 | |
commit | f5f17c4dd7a449941a395002b0b9dae37368a8f7 (patch) | |
tree | 734bf661aa288089144bc6c3303cdf104a1e8a72 /fs | |
parent | d901aa32d5c75b16e3ba08b20b12dc9858a68512 (diff) | |
download | buildroot-f5f17c4dd7a449941a395002b0b9dae37368a8f7.tar.gz buildroot-f5f17c4dd7a449941a395002b0b9dae37368a8f7.tar.bz2 |
core: remove show-dependency-tree
show-dependency-tree was introduced in this release cycle, as a way to
quickly and easily provide the dependency tree to graph-depends.
show-dependency-tree is no longer used, now that graph-depends has been
switched over to using the more versatile show-info.
Beside, show-dependency-tree has never been part of a release.
Drop it.
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Cc: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Cc: Thomas De Schampheleire <patrickdepinguin@gmail.com>
Cc: Arnout Vandecappelle <arnout@mind.be>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Diffstat (limited to 'fs')
-rw-r--r-- | fs/common.mk | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/fs/common.mk b/fs/common.mk index 6dd1774726..fceb38c5b9 100644 --- a/fs/common.mk +++ b/fs/common.mk @@ -61,10 +61,6 @@ ROOTFS_COMMON_FINAL_RECURSIVE_DEPENDENCIES = $(sort \ ) \ $(ROOTFS_COMMON_FINAL_RECURSIVE_DEPENDENCIES__X)) -rootfs-common-show-dependency-tree: $(patsubst %,%-show-dependency-tree,$(ROOTFS_COMMON_DEPENDENCIES)) - $(info rootfs-common: host) - $(info rootfs-common -> $(foreach d,$(ROOTFS_COMMON_DEPENDENCIES),$(d))) - .PHONY: rootfs-common rootfs-common: $(ROOTFS_COMMON_DEPENDENCIES) target-finalize @$(call MESSAGE,"Generating root filesystems common tables") @@ -117,10 +113,6 @@ ROOTFS_$(2)_FINAL_RECURSIVE_DEPENDENCIES = $$(sort \ ) \ $$(ROOTFS_$(2)_FINAL_RECURSIVE_DEPENDENCIES__X)) -rootfs-$(1)-show-dependency-tree: $$(patsubst %,%-show-dependency-tree,$$(ROOTFS_$(2)_DEPENDENCIES)) - $$(info rootfs-$(1): host) - $$(info rootfs-$(1) -> $$(foreach d,$$(ROOTFS_$(2)_DEPENDENCIES),$$(d))) - ifeq ($$(BR2_TARGET_ROOTFS_$(2)_GZIP),y) ROOTFS_$(2)_COMPRESS_EXT = .gz ROOTFS_$(2)_COMPRESS_CMD = gzip -9 -c |