Prevent `make distclean` removing config/config.rpath

`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
This commit is contained in:
Tomohiro Kusumi 2019-04-27 03:22:14 +09:00 committed by Brian Behlendorf
parent 126d0fa733
commit 9dfe4b80f0
1 changed files with 1 additions and 0 deletions

View File

@ -0,0 +1 @@
# `make distclean` deletes files with size 0. This text is to avoid that.