From: Tomohiro Kusumi Date: Fri, 26 Apr 2019 18:22:14 +0000 (+0900) Subject: Prevent `make distclean` removing config/config.rpath X-Git-Tag: zfs-0.8.0-rc5~32 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=9dfe4b80f0d18d41bc44aa448367aa4ebb63b5db;p=zfs 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 Signed-off-by: Tomohiro Kusumi Closes #8665 --- diff --git a/config/config.rpath b/config/config.rpath index e69de29bb..7b9da3c6c 100644 --- a/config/config.rpath +++ b/config/config.rpath @@ -0,0 +1 @@ +# `make distclean` deletes files with size 0. This text is to avoid that.