From: Thomas Petazzoni Date: Thu, 6 May 2010 08:05:43 +0000 (+0200) Subject: package: Add new -show-depends to list dependencies X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=118b880d73e812069ec2fe72f921d70894eb10a0;p=buildroot.git package: Add new -show-depends to list dependencies The new -show-depends simply outputs the list of dependencies for the given package. Signed-off-by: Thomas Petazzoni --- diff --git a/package/Makefile.package.in b/package/Makefile.package.in index c2f86c7bed..cdf49f8fef 100644 --- a/package/Makefile.package.in +++ b/package/Makefile.package.in @@ -338,6 +338,9 @@ $(1)-extract: $(1)-depends \ $(1)-depends: $(1)-source $$($(2)_DEPENDENCIES) +$(1)-show-depends: + @echo $$($(2)_DEPENDENCIES) + $(1)-source: $$($(2)_TARGET_SOURCE) $(1)-uninstall: $(1)-configure $$($(2)_TARGET_UNINSTALL)