]> git.proxmox.com Git - mirror_zfs.git/commitdiff
Prevent `make distclean` removing config/config.rpath
authorTomohiro Kusumi <kusumi.tomohiro@gmail.com>
Fri, 26 Apr 2019 18:22:14 +0000 (03:22 +0900)
committerBrian Behlendorf <behlendorf1@llnl.gov>
Fri, 26 Apr 2019 18:22:14 +0000 (11:22 -0700)
`make distclean` removes an empty file config/config.rpath.
Avoid that by adding some text.

Also see e1245d83e9("Prevent `make distclean` removing 0 sized file").

--
 # find . -size 0
 ./config/config.rpath
 # ./autogen.sh && ./configure
 # git diff
 # make distclean
 # git diff
 diff --git a/config/config.rpath b/config/config.rpath
 deleted file mode 100644
 index e69de29bb..000000000

Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov>
Signed-off-by: Tomohiro Kusumi <kusumi.tomohiro@gmail.com>
Closes #8665

config/config.rpath

index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..7b9da3c6c4552940fa938c1c72beae6931cac77f 100644 (file)
@@ -0,0 +1 @@
+# `make distclean` deletes files with size 0. This text is to avoid that.