diff options
author | Richard Purdie <richard@openedhand.com> | 2007-10-05 12:40:19 +0000 |
---|---|---|
committer | Richard Purdie <richard@openedhand.com> | 2007-10-05 12:40:19 +0000 |
commit | a0ad9da37619a28fefd3adcdaab23eca4cd0e42f (patch) | |
tree | 11682b4c0b5c8780d65c8ddd3e118b4197ccabfc /scripts | |
parent | 7f978385265c0caf7b5e0ef8f72fb4fd4426a9ba (diff) | |
download | poky-a0ad9da37619a28fefd3adcdaab23eca4cd0e42f.tar.gz |
scripts/poky-autobuild: Add support for a POSTPROCESS command
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@2842 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/poky-autobuild | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/scripts/poky-autobuild b/scripts/poky-autobuild index 4c93aa079f..f5be35d35d 100755 --- a/scripts/poky-autobuild +++ b/scripts/poky-autobuild | |||
@@ -34,6 +34,10 @@ fi | |||
34 | if [ "xcomplete" = "x$1" ]; then | 34 | if [ "xcomplete" = "x$1" ]; then |
35 | touch ./build/tmp/deploy/images/images-complete | 35 | touch ./build/tmp/deploy/images/images-complete |
36 | chmod a+w ./build/tmp/deploy/images/images-complete | 36 | chmod a+w ./build/tmp/deploy/images/images-complete |
37 | POSTPROCESS=`which poky-autobuild-postprocess` | ||
38 | if [ "x$POSTPROCESS" != "x" ]; then | ||
39 | $POSTPROCESS `pwd` | ||
40 | fi | ||
37 | exit 0 | 41 | exit 0 |
38 | fi | 42 | fi |
39 | 43 | ||