| Submitter | Otavio Salvador |
|---|---|
| Date | Oct. 11, 2012, 9:46 p.m. |
| Message ID | <1349992001-3965-1-git-send-email-otavio@ossystems.com.br> |
| Download | mbox | patch |
| Permalink | /patch/38105/ |
| State | Accepted |
| Commit | f9e3745d8eeef0df7e6dba3ba17d0b00645c92fa |
| Headers | show |
Comments
On 10/11/2012 02:46 PM, Otavio Salvador wrote: > Signed-off-by: Otavio Salvador <otavio@ossystems.com.br> > --- > meta/classes/buildhistory.bbclass | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/meta/classes/buildhistory.bbclass b/meta/classes/buildhistory.bbclass > index 49f2ea5..0a5753f 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 > Merged into OE-Core Thanks Sau!
Patch
diff --git a/meta/classes/buildhistory.bbclass b/meta/classes/buildhistory.bbclass index 49f2ea5..0a5753f 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
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br> --- meta/classes/buildhistory.bbclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)