diff options
author | Masahiro Yamada | 2014-06-06 20:46:45 +0900 |
---|---|---|
committer | Tom Rini | 2014-06-11 16:27:05 -0400 |
commit | 7050f0de7e566862ed72ac4d86ddf21d929651c8 (patch) | |
tree | ea71b80807515132caac964be78503cf2d1eb186 /.gitignore | |
parent | 96b09a97f5eda5132d059ce3c72dafb53654380f (diff) |
.gitignore: move *.exe pattern to the top gitignore for Cygwin
GCC on Cygwin generates executables with .exe extension,
for example:
scripts/basic/fixdep.exe
scripts/docproc.exe
To ignore them, *.exe pattern should be moved
from tools/.gitignore to ./.gitignore
Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com>
Diffstat (limited to '.gitignore')
-rw-r--r-- | .gitignore | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore index c2f53fccb44..4e4fd00c2f9 100644 --- a/.gitignore +++ b/.gitignore @@ -21,6 +21,9 @@ *.patch *.cfgtmp +# host programs on Cygwin +*.exe + # Build tree /build-* |