diff options
author | Richard Yao <[email protected]> | 2012-08-16 14:55:42 -0400 |
---|---|---|
committer | Brian Behlendorf <[email protected]> | 2012-08-23 12:49:04 -0700 |
commit | 15d0411297113cb2681f5522ed373d4d37fcf132 (patch) | |
tree | d17097f77738fe36e223e261943bc0c735877e35 /lib | |
parent | 9baf44bc17ddbc01dae4feacda32e04aac73f730 (diff) |
Remove Makefile from non-toplevel .gitignore files
When building SPL support into the kernel, ./copy-builtin will copy
non-toplevel .gitignore files. These files list /Makefile, which causes
git-archive to omit ./module/{spl,splat}/Makefile. The absence of these
files result in build failures when SPL is selected. ZFS is unaffected
because it puts Makefile in the toplevel .gitignore, which is not
copied. We fix SPL by emulating that behavior.
Reported-by: Fabio Erculiani <[email protected]>
Signed-off-by: Richard Yao <[email protected]>
Signed-off-by: Brian Behlendorf <[email protected]>
Closes #152
Diffstat (limited to 'lib')
-rw-r--r-- | lib/.gitignore | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/.gitignore b/lib/.gitignore deleted file mode 100644 index 5fc607b9e..000000000 --- a/lib/.gitignore +++ /dev/null @@ -1 +0,0 @@ -/Makefile |