summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorYann E. MORIN <yann.morin.1998@free.fr>2014-01-07 23:46:04 +0100
committerPeter Korsgaard <peter@korsgaard.com>2014-01-09 21:16:30 +0100
commit56eb3944d5d6d58b0125b22da7dcaeff5c0d3d1f (patch)
treeab5343324dd781935fee1c77299326a54b750d32
parent195235c9d9b3cb66392102cf292f31800765ca7a (diff)
downloadbuildroot-56eb3944d5d6d58b0125b22da7dcaeff5c0d3d1f.tar.gz
buildroot-56eb3944d5d6d58b0125b22da7dcaeff5c0d3d1f.zip
Makefile: support running graph-depends from out-of-tree
Reported-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Cc: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
-rw-r--r--Makefile3
-rw-r--r--package/pkg-generic.mk3
2 files changed, 4 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 6faa698dee..7624f593d6 100644
--- a/Makefile
+++ b/Makefile
@@ -647,7 +647,8 @@ graph-build: $(O)/build/build-time.log
graph-depends:
@$(INSTALL) -d $(O)/graphs
- @./support/scripts/graph-depends \
+ @cd "$(CONFIG_DIR)"; \
+ $(TOPDIR)/support/scripts/graph-depends \
|dot -T$(BR2_GRAPH_OUT) -o $(O)/graphs/$(@).$(BR2_GRAPH_OUT)
else # ifeq ($(BR2_HAVE_DOT_CONFIG),y)
diff --git a/package/pkg-generic.mk b/package/pkg-generic.mk
index b519d6942c..1b99c2a25d 100644
--- a/package/pkg-generic.mk
+++ b/package/pkg-generic.mk
@@ -470,7 +470,8 @@ $(1)-show-depends:
$(1)-graph-depends:
@$(INSTALL) -d $(O)/graphs
- @./support/scripts/graph-depends $(1) \
+ @cd "$(CONFIG_DIR)"; \
+ $(TOPDIR)/support/scripts/graph-depends $(1) \
|dot -T$(BR2_GRAPH_OUT) -o $(O)/graphs/$$(@).$(BR2_GRAPH_OUT)
$(1)-dirclean: $$($(2)_TARGET_DIRCLEAN)
OpenPOWER on IntegriCloud