diff options
author | Otavio Salvador <otavio@ossystems.com.br> | 2012-10-11 21:46:41 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-10-18 12:03:28 +0100 |
commit | f9e3745d8eeef0df7e6dba3ba17d0b00645c92fa (patch) | |
tree | 48f3e664b94422e8041d45b995e7c7da515e3d49 /meta/classes | |
parent | 841ea3c1c18e50e77fccbd5f44d6a79a50913b67 (diff) | |
download | openembedded-core-f9e3745d8eeef0df7e6dba3ba17d0b00645c92fa.tar.gz openembedded-core-f9e3745d8eeef0df7e6dba3ba17d0b00645c92fa.tar.bz2 openembedded-core-f9e3745d8eeef0df7e6dba3ba17d0b00645c92fa.zip |
buildhistory.bbclass: Fix hostname print for 'No changes' case
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes')
-rw-r--r-- | meta/classes/buildhistory.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/buildhistory.bbclass b/meta/classes/buildhistory.bbclass index 49f2ea5b7c..0a5753f7dc 100644 --- a/meta/classes/buildhistory.bbclass +++ b/meta/classes/buildhistory.bbclass @@ -403,9 +403,9 @@ END fi # Check if there are new/changed files to commit (other than metadata-revs) repostatus=`git status --porcelain | grep -v " metadata-revs$"` + HOSTNAME=`hostname 2>/dev/null || echo unknown` if [ "$repostatus" != "" ] ; then git add . - HOSTNAME=`hostname 2>/dev/null || echo unknown` # porcelain output looks like "?? packages/foo/bar" # Ensure we commit metadata-revs with the first commit for entry in `echo "$repostatus" | awk '{print $2}' | awk -F/ '{print $1}' | sort | uniq` ; do |