diff options
author | Brian Behlendorf <[email protected]> | 2018-05-13 18:59:02 -0700 |
---|---|---|
committer | GitHub <[email protected]> | 2018-05-13 18:59:02 -0700 |
commit | b669ab83bb3636e86b8fda271ee1549f2692d03a (patch) | |
tree | c948b6e5354e8ac2bd153780f6aeafde5b037e87 /module/Makefile.in | |
parent | bc5f51c5de21fd8b7cf3110801a6b1db1e4c3d0a (diff) |
Ignore *.o.ur-safe build artifacts
Generated when building on Ubuntu 18.04. Also ignore the new
dynamically generated zfs-mount-generator.8 man page, and the
module/.cache.mk file.
Reviewed-by: Giuseppe Di Natale <[email protected]>
Signed-off-by: Brian Behlendorf <[email protected]>
Closes #7534
Diffstat (limited to 'module/Makefile.in')
-rw-r--r-- | module/Makefile.in | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/module/Makefile.in b/module/Makefile.in index 15c74e130..4cd6988bb 100644 --- a/module/Makefile.in +++ b/module/Makefile.in @@ -54,6 +54,8 @@ clean: if [ -f @LINUX_SYMBOLS@ ]; then $(RM) @LINUX_SYMBOLS@; fi if [ -f Module.markers ]; then $(RM) Module.markers; fi + find . -name '*.ur-safe' -type f -print | xargs $(RM) + modules_install: @# Install the kernel modules $(MAKE) -C @LINUX_OBJ@ SUBDIRS=`pwd` $@ \ |