You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by kx...@apache.org on 2015/09/23 14:29:05 UTC

[11/50] rebar commit: updated refs/heads/import to 5dea85d

Update PLT detail for make build_plt

The PLT that rebar will have dialyzer use is now created with make
build_plt - this commit explains that.


Project: http://git-wip-us.apache.org/repos/asf/couchdb-rebar/repo
Commit: http://git-wip-us.apache.org/repos/asf/couchdb-rebar/commit/65ac13bf
Tree: http://git-wip-us.apache.org/repos/asf/couchdb-rebar/tree/65ac13bf
Diff: http://git-wip-us.apache.org/repos/asf/couchdb-rebar/diff/65ac13bf

Branch: refs/heads/import
Commit: 65ac13bf13243c76210a2604b6a5f2f6aea441e9
Parents: 791db71
Author: Derek Brown <de...@gmail.com>
Authored: Tue May 12 12:00:27 2015 -0400
Committer: Derek Brown <de...@gmail.com>
Committed: Tue May 12 12:14:57 2015 -0400

----------------------------------------------------------------------
 CONTRIBUTING.md | 7 +------
 THANKS          | 1 +
 2 files changed, 2 insertions(+), 6 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/couchdb-rebar/blob/65ac13bf/CONTRIBUTING.md
----------------------------------------------------------------------
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index 9c88baf..968153e 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -77,12 +77,7 @@ and [Dialyzer](http://www.erlang.org/doc/man/dialyzer.html), causing a test
 failure.  
 If that happens, running `make clean` before running `make check` could solve the problem.  
 
-Dialyzer requires a PLT (Persitent Lookup Table) to work with. By default, it will look for  
-`$HOME/.dialyzer.plt` (alternatively, the `DIALYZER_PLT` environment variable can be set  
-to point to a different location). If a PLT file cannot be found, Dialyzer (via `make check`) will  
-fail- the output will indicate `"Could not read PLT file"`, including the path it tried to use.  
-See the [Dialyzer man page](http://www.erlang.org/doc/man/dialyzer.html) or [this further explanation](http://www.erlang.org/doc/apps/dialyzer/dialyzer_chapter.html) for details on creating the initial  
-PLT file.
+Dialyzer requires a PLT (Persitent Lookup Table) to work with, and `make check` will fail without it. The PLT that rebar uses needs to initially be created with `make build_plt`, and is named based on the version of Erlang/OTP in use. See the [Dialyzer man page](http://www.erlang.org/doc/man/dialyzer.html) or [this further explanation](http://www.erlang.org/doc/apps/dialyzer/dialyzer_chapter.html) for additional information.
 
 If you change any of the files with known but safe to ignore Dialyzer warnings, you may  
 have to adapt the line number(s) in [dialyzer_reference](dialyzer_reference). If you do that, 

http://git-wip-us.apache.org/repos/asf/couchdb-rebar/blob/65ac13bf/THANKS
----------------------------------------------------------------------
diff --git a/THANKS b/THANKS
index 6365b66..d9b9984 100644
--- a/THANKS
+++ b/THANKS
@@ -138,3 +138,4 @@ Brian H. Ward
 David Kubecka
 Carlos Eduardo de Paula
 Paulo F. Oliveira
+Derek Brown