diff options
| author | Josh Triplett <josht@us.ibm.com> | 2006-09-16 12:15:42 -0700 | 
|---|---|---|
| committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-09-16 12:54:31 -0700 | 
| commit | 0f71a3738c91c3b8da60c63b04557ebd6060a1ea (patch) | |
| tree | 8cb0c83a987c9b519e63943abb4bb822c8b768f2 /.gitignore | |
| parent | 4064d5ef26a04d9e34e4c0f348e30f14ab6828d8 (diff) | |
| download | linux-0f71a3738c91c3b8da60c63b04557ebd6060a1ea.tar.bz2 | |
[PATCH] Add preprocessed files (*.i) to .gitignore
The kernel build system supports making preprocessed files (*.i) from C source
files.  Add these files to .gitignore.
Signed-off-by: Josh Triplett <josh@freedesktop.org>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to '.gitignore')
| -rw-r--r-- | .gitignore | 1 | 
1 files changed, 1 insertions, 0 deletions
| diff --git a/.gitignore b/.gitignore index b1f5b9df2ae1..0ec45333e7c6 100644 --- a/.gitignore +++ b/.gitignore @@ -12,6 +12,7 @@  *.ko  *.so  *.mod.c +*.i  #  # Top-level generic files |