Add pyzfs build directories to gitignore
The recent addition of pyzfs does not include the generated 'build' and 'pyzfs.egg-info' directories in the pyzfs .gitignore or the 'make clean' target. This patch simply corrects this problem. Reviewed-by: George Melikov <mail@gmelikov.ru> Reviewed-by: loli10K <ezomori.nozomu@gmail.com> Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov> Signed-off-by: Tom Caputi <tcaputi@datto.com> Closes #7612
This commit is contained in:
parent
2ffd89fcb9
commit
c634808ebb
|
@ -0,0 +1,2 @@
|
|||
build
|
||||
pyzfs.egg-info
|
|
@ -32,6 +32,7 @@ install-exec-local:
|
|||
--verbose
|
||||
|
||||
clean: clean-local
|
||||
rm -rf build/ pyzfs.egg-info/
|
||||
|
||||
clean-local:
|
||||
|
||||
|
|
Loading…
Reference in New Issue