diff options
author | Jonathan Liu <net147@gmail.com> | 2013-05-31 11:09:14 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-06-04 11:21:10 +0100 |
commit | a45a247e2cfa58892a0c9eb050d603a38cd839db (patch) | |
tree | 4d92829e9e74918d8a707636f58906aad6cee432 /meta | |
parent | 1e58fc8f6ac8f13d6c86a3ae340d90dd53b3ec27 (diff) | |
download | openembedded-core-a45a247e2cfa58892a0c9eb050d603a38cd839db.tar.gz openembedded-core-a45a247e2cfa58892a0c9eb050d603a38cd839db.tar.bz2 openembedded-core-a45a247e2cfa58892a0c9eb050d603a38cd839db.zip |
classes/buildhistory: record removals in buildhistory directory
"git add ." does not record files that were removed in the buildhistory
directory. Specify the -A flag to also record removals.
This was discovered by the following warning added in Git 1.8.3:
warning: You ran 'git add' with neither '-A (--all)' or '--ignore-removal',
whose behaviour will change in Git 2.0 with respect to paths you removed.
Signed-off-by: Jonathan Liu <net147@gmail.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-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 d39408b9c8..b12da4ac98 100644 --- a/meta/classes/buildhistory.bbclass +++ b/meta/classes/buildhistory.bbclass @@ -510,7 +510,7 @@ END repostatus=`git status --porcelain | grep -v " metadata-revs$"` HOSTNAME=`hostname 2>/dev/null || echo unknown` if [ "$repostatus" != "" ] ; then - git add . + git add -A . # 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 |