diff options
author | Danomi Manchego <danomimanchego123@gmail.com> | 2013-05-16 00:07:02 +0000 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2013-05-16 13:05:04 +0200 |
commit | bfca77e7f7e21e1a624c32f0b1efdb52af34f1f2 (patch) | |
tree | 4b55559184d2d9a9886ae461a07e9d663026c87c | |
parent | fb1ba5dff1748226c13cb92320f5171c026a47ca (diff) | |
download | buildroot-novena-bfca77e7f7e21e1a624c32f0b1efdb52af34f1f2.tar.gz buildroot-novena-bfca77e7f7e21e1a624c32f0b1efdb52af34f1f2.zip |
graph-depends: ignore the 'target-purgelocales' target
Otherwise, graph-depends tries to call 'make target-purgelocales-show-depends',
which does not exist, as 'target-purgelocales' is not an actual package.
Signed-off-by: Danomi Manchego <danomimanchego123@gmail.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
-rwxr-xr-x | support/scripts/graph-depends | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/support/scripts/graph-depends b/support/scripts/graph-depends index 790e24e30..50b8670c1 100755 --- a/support/scripts/graph-depends +++ b/support/scripts/graph-depends @@ -170,6 +170,7 @@ TARGET_EXCEPTIONS = [ "target-generic-hostname", "target-root-passwd", "target-post-image", + "target-purgelocales", ] # In full mode, start with the result of get_targets() to get the main |