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)
downloadpoky-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
34if [ "xcomplete" = "x$1" ]; then 34if [ "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
38fi 42fi
39 43