diff options
author | Jan Engelhardt <[email protected]> | 2013-03-30 03:31:52 +0100 |
---|---|---|
committer | Brian Behlendorf <[email protected]> | 2013-04-02 10:50:17 -0700 |
commit | ea0fcfc8752f96ad518793f946b84394a679640c (patch) | |
tree | d192a3b7f5a4d4b1000d1c51c4ed18e5c78704e7 | |
parent | ecf76e36767cbd5f320d49c9902def14ff89c4a0 (diff) |
gitignore: anchor entries at their respective directory
.ko is specific to module, .m4 to config, etc.
Signed-off-by: Jan Engelhardt <[email protected]>
Signed-off-by: Brian Behlendorf <[email protected]>
-rw-r--r-- | .gitignore | 5 | ||||
-rw-r--r-- | config/.gitignore | 12 | ||||
-rw-r--r-- | module/.gitignore | 6 |
3 files changed, 12 insertions, 11 deletions
diff --git a/.gitignore b/.gitignore index cdebb63a9..de3ab11c9 100644 --- a/.gitignore +++ b/.gitignore @@ -14,16 +14,11 @@ # Normal rules # *.[oa] -*.ko -*.ko.unsigned -*.ko.out -*.ko.out.sig *.lo *.la *.mod.c *~ *.swp -.*.cmd .deps .libs .DS_Store diff --git a/config/.gitignore b/config/.gitignore index df81091c1..dcd88d7c6 100644 --- a/config/.gitignore +++ b/config/.gitignore @@ -1,6 +1,6 @@ -config.guess -config.sub -depcomp -install-sh -ltmain.sh -missing +/config.guess +/config.sub +/depcomp +/install-sh +/ltmain.sh +/missing diff --git a/module/.gitignore b/module/.gitignore index 611c51c42..9a413aeb4 100644 --- a/module/.gitignore +++ b/module/.gitignore @@ -1,3 +1,9 @@ +*.ko +*.ko.unsigned +*.ko.out +*.ko.out.sig +.*.cmd + /.tmp_versions /Module.markers /Module.symvers |