Skip to content

Commit

Permalink
Prevent make distclean removing config/config.rpath
Browse files Browse the repository at this point in the history
`make distclean` removes an empty file config/config.rpath.
Avoid that by adding some text.

Also see e1245d8("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 openzfs#8665
  • Loading branch information
kusumi authored and behlendorf committed Apr 26, 2019
1 parent 126d0fa commit 9dfe4b8
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions config/config.rpath
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# `make distclean` deletes files with size 0. This text is to avoid that.

0 comments on commit 9dfe4b8

Please sign in to comment.