From: Richard Purdie Date: Fri, 5 Oct 2007 12:40:19 +0000 (+0000) Subject: scripts/poky-autobuild: Add support for a POSTPROCESS command X-Git-Tag: 2011-1~10579 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=a0ad9da37619a28fefd3adcdaab23eca4cd0e42f;p=openembedded-core.git 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 --- 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