]> git.proxmox.com Git - mirror_zfs.git/commit
Prevent `make distclean` removing 0 sized file
authorTomohiro Kusumi <kusumi.tomohiro@gmail.com>
Mon, 7 May 2018 03:46:13 +0000 (20:46 -0700)
committerBrian Behlendorf <behlendorf1@llnl.gov>
Mon, 7 May 2018 03:46:13 +0000 (20:46 -0700)
commite1245d83e9c0d556272c3f3c874adab49a1e088c
tree5738a7fd408e1412266ddd285f3de5ade97820c9
parentfb0da71fd96c37ff86c4d55e53b5a56e050bcfc9
Prevent `make distclean` removing 0 sized file

__init__.py used by Python packages typically has nothing in it
including contrib/pyzfs/libzfs_core/test/__init__.py, however this
causes `make distclean` to delete the file.

This is the only file with size 0, and it seems reasonable to have
a comment to avoid being deleted, rather than trying to modify
distclean behavior.

 # find . -size 0
 ./contrib/pyzfs/libzfs_core/test/__init__.py
 # ./autogen.sh ; ./configure ; make -j8
 # make distclean
 # ls contrib/pyzfs/libzfs_core/test/__init__.py
 ls: cannot access 'contrib/pyzfs/libzfs_core/test/__init__.py':
     No such file or directory
 # git diff
 diff --git a/contrib/pyzfs/libzfs_core/test/__init__.py
     b/contrib/pyzfs/libzfs_core/test/__init__.py
 deleted file mode 100644

Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov>
Signed-off-by: Tomohiro Kusumi <kusumi.tomohiro@osnexus.com>
Closes #7505
contrib/pyzfs/libzfs_core/test/__init__.py