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:39:38 +0000 |
| commit | 37cfd8080ac4c49e9ea3f646f29b047b479753d6 (patch) | |
| tree | ebff5d67b2bb0ff750edf63f62572ba6821bb772 | |
| parent | 1f6599bef59cf35ea1406d46df379cd856dbe34c (diff) | |
| download | poky-37cfd8080ac4c49e9ea3f646f29b047b479753d6.tar.gz | |
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.
(From OE-Core rev: 3a60e5dba0ea914b1bd7a2073c1977e1d8529541)
Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
| -rw-r--r-- | .gitignore | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.gitignore b/.gitignore index 42358310bf..036ad09567 100644 --- a/.gitignore +++ b/.gitignore | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | *.pyc | 1 | *.pyc |
| 2 | *.pyo | 2 | *.pyo |
| 3 | /*.patch | 3 | /*.patch |
| 4 | build*/ | 4 | /build*/ |
| 5 | pyshtables.py | 5 | pyshtables.py |
| 6 | pstage/ | 6 | pstage/ |
| 7 | scripts/oe-git-proxy-socks | 7 | scripts/oe-git-proxy-socks |
