diff options
author | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2013-03-05 08:59:21 +0000 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2013-03-06 21:10:24 +0100 |
commit | a9ba807c588e285960e08140127ea43a6066204c (patch) | |
tree | 0d03f122a3942cd988ba0f301ec99b99362d86ef /support/scripts | |
parent | b9bb2c64cde21018f298b59c9a63a442286bf569 (diff) | |
download | buildroot-novena-a9ba807c588e285960e08140127ea43a6066204c.tar.gz buildroot-novena-a9ba807c588e285960e08140127ea43a6066204c.zip |
graph-depends: ignore the 'target-post-image' target
Since the introduction of the post-image mechanism, the graph-depends
script is broken: it tries to call 'make
target-post-image-show-depends', which doesn't exist since
'target-post-image' is not a package.
So we should simply ignore this 'target-post-image'.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'support/scripts')
-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 1163d7967..180c81d94 100755 --- a/support/scripts/graph-depends +++ b/support/scripts/graph-depends @@ -168,6 +168,7 @@ TARGET_EXCEPTIONS = [ "erase-fakeroots", "target-generic-hostname", "target-root-passwd", + "target-post-image", ] # In full mode, start with the result of get_targets() to get the main |