[OE-core] [PATCH 3/6] gitignore: fix overzealous exclusion

Paul Eggleton paul.eggleton at linux.intel.com
Fri Nov 6 13:01:17 UTC 2015


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 at linux.intel.com>
---
 .gitignore | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.gitignore b/.gitignore
index e80a2fd..d8f2259 100644
--- a/.gitignore
+++ b/.gitignore
@@ -2,7 +2,7 @@ bitbake
 *.pyc
 *.pyo
 /*.patch
-build*/
+/build*/
 pyshtables.py
 pstage/
 scripts/oe-git-proxy-socks
-- 
2.1.0




More information about the Openembedded-core mailing list