summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJungtaek Lim <kabhwan@gmail.com>2015-01-09 00:07:25 +0900
committerantirez <antirez@gmail.com>2015-01-08 16:35:49 +0100
commit5165fb98afab421d90b927a684e6063d8a628159 (patch)
treee625435a5b3a2657f39872a5537b1b5ffdc5bbc1
parent22a0fe8de65124839d567f0d2f57f1dceced7e73 (diff)
downloadredis-5165fb98afab421d90b927a684e6063d8a628159.tar.gz
Explain make distclean which seems not well known
-rw-r--r--README7
1 files changed, 7 insertions, 0 deletions
diff --git a/README b/README
index b7a12b828..f18fcf8cb 100644
--- a/README
+++ b/README
@@ -26,6 +26,13 @@ After building Redis is a good idea to test it, using:
% make test
+Fixing build problems with dependencies
+—--------
+Redis has some dependencies which are included to deps directory.
+“make” doesn’t rebuild deps though sources of dependencies are changed, and “make clean” cleans up src directory only.
+Only “make distclean” cleans up deps build output.
+So if build errors occur with deps you can try “make distclean” and “make” again.
+
Fixing problems building 32 bit binaries
---------