summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--meta/classes/buildhistory.bbclass2
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
403 fi 403 fi
404 # Check if there are new/changed files to commit (other than metadata-revs) 404 # Check if there are new/changed files to commit (other than metadata-revs)
405 repostatus=`git status --porcelain | grep -v " metadata-revs$"` 405 repostatus=`git status --porcelain | grep -v " metadata-revs$"`
406 HOSTNAME=`hostname 2>/dev/null || echo unknown`
406 if [ "$repostatus" != "" ] ; then 407 if [ "$repostatus" != "" ] ; then
407 git add . 408 git add .
408 HOSTNAME=`hostname 2>/dev/null || echo unknown`
409 # porcelain output looks like "?? packages/foo/bar" 409 # porcelain output looks like "?? packages/foo/bar"
410 # Ensure we commit metadata-revs with the first commit 410 # Ensure we commit metadata-revs with the first commit
411 for entry in `echo "$repostatus" | awk '{print $2}' | awk -F/ '{print $1}' | sort | uniq` ; do 411 for entry in `echo "$repostatus" | awk '{print $2}' | awk -F/ '{print $1}' | sort | uniq` ; do