diff options
author | Tomohiro Kusumi <[email protected]> | 2019-04-27 03:22:14 +0900 |
---|---|---|
committer | Brian Behlendorf <[email protected]> | 2019-04-26 11:22:14 -0700 |
commit | 9dfe4b80f0d18d41bc44aa448367aa4ebb63b5db (patch) | |
tree | abfae3928ca1a7e871af1ae21c1eb2498c9e22f9 /config/config.rpath | |
parent | 126d0fa7333c0d6d6159900d2858c82fa964b4f9 (diff) |
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 <[email protected]>
Signed-off-by: Tomohiro Kusumi <[email protected]>
Closes #8665
Diffstat (limited to 'config/config.rpath')
-rw-r--r-- | config/config.rpath | 1 |
1 files changed, 1 insertions, 0 deletions
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. |