diff options
author | Masahiro Yamada <yamada.masahiro@socionext.com> | 2019-08-19 06:18:07 +0200 |
---|---|---|
committer | Masahiro Yamada <yamada.masahiro@socionext.com> | 2019-08-21 18:14:11 +0200 |
commit | a564bdeb5e0d79dbcebb9a138e7b9f2d7ed97df9 (patch) | |
tree | 7beab77ede64c18c575c93667011aecab6066495 /.gitignore | |
parent | kbuild: split final module linking out into Makefile.modfinal (diff) | |
download | linux-a564bdeb5e0d79dbcebb9a138e7b9f2d7ed97df9.tar.xz linux-a564bdeb5e0d79dbcebb9a138e7b9f2d7ed97df9.zip |
.gitignore: ignore modules.order explicitly
The pattern '*.order' was added by commit c6025f4c8bbe ("kbuild: ignore
*.order files") to ignore modules.order files.
I do not see any other user of the '.order' extension.
Ignore 'modules.order' explicitly instead of '*.order'.
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Diffstat (limited to '.gitignore')
-rw-r--r-- | .gitignore | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.gitignore b/.gitignore index 2030c7a4d2f8..ce2c6348d372 100644 --- a/.gitignore +++ b/.gitignore @@ -34,7 +34,6 @@ *.mod.c *.o *.o.* -*.order *.patch *.s *.so @@ -46,6 +45,7 @@ *.xz Module.symvers modules.builtin +modules.order # # Top-level generic files |