diff options
author | Paul Eggleton <paul.eggleton@linux.intel.com> | 2015-09-03 12:03:21 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-11-16 11:37:12 +0000 |
commit | 3a60e5dba0ea914b1bd7a2073c1977e1d8529541 (patch) | |
tree | 299150b2f7a11f7243a7c4f86b3795549f45ebc5 /.gitignore | |
parent | c64fdfd27103a4962c74c88f4ef7940cda6832eb (diff) | |
download | openembedded-core-3a60e5dba0ea914b1bd7a2073c1977e1d8529541.tar.gz openembedded-core-3a60e5dba0ea914b1bd7a2073c1977e1d8529541.tar.bz2 openembedded-core-3a60e5dba0ea914b1bd7a2073c1977e1d8529541.zip |
gitignore: fix overzealous exclusion
This was excluding any subdirectory anywhere in the tree named build*,
rather than just at the root - thus anything in
meta/recipes-devtools/build-compare had to be forcibly added. Change the
line so that it only operates at the root of the repo.
Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Diffstat (limited to '.gitignore')
-rw-r--r-- | .gitignore | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.gitignore b/.gitignore index e80a2fde3a..d8f2259228 100644 --- a/.gitignore +++ b/.gitignore @@ -2,7 +2,7 @@ bitbake *.pyc *.pyo /*.patch -build*/ +/build*/ pyshtables.py pstage/ scripts/oe-git-proxy-socks |