summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorRichard Purdie <richard@openedhand.com>2007-10-05 12:40:19 +0000
committerRichard Purdie <richard@openedhand.com>2007-10-05 12:40:19 +0000
commita0ad9da37619a28fefd3adcdaab23eca4cd0e42f (patch)
tree11682b4c0b5c8780d65c8ddd3e118b4197ccabfc /scripts
parent7f978385265c0caf7b5e0ef8f72fb4fd4426a9ba (diff)
downloadopenembedded-core-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-xscripts/poky-autobuild4
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
if [ "xcomplete" = "x$1" ]; then
touch ./build/tmp/deploy/images/images-complete
chmod a+w ./build/tmp/deploy/images/images-complete
+ POSTPROCESS=`which poky-autobuild-postprocess`
+ if [ "x$POSTPROCESS" != "x" ]; then
+ $POSTPROCESS `pwd`
+ fi
exit 0
fi