From 8b76d23aaec26cde4bae3c3fd672a18c83a1e07c Mon Sep 17 00:00:00 2001
From: Tuncer Ayaz <tuncer.ayaz@gmail.com>
Date: Mon, 11 Feb 2013 22:28:03 +0100
Subject: Makefile: call Dialyzer with -nn flag

This speeds up 'make dialyzer' for the common case of Erlang/OTP built
without --enable-native-libs.
---
 Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Makefile b/Makefile
index 3a3eb63..851edc2 100644
--- a/Makefile
+++ b/Makefile
@@ -24,7 +24,7 @@ dialyzer: dialyzer_warnings
 	@diff -U0 dialyzer_reference dialyzer_warnings
 
 dialyzer_warnings:
-	-@dialyzer -q -n ebin -Wunmatched_returns -Werror_handling \
+	-@dialyzer -q -nn -n ebin -Wunmatched_returns -Werror_handling \
 		-Wrace_conditions > dialyzer_warnings
 
 binary: VSN = $(shell ./rebar -V)
-- 
cgit v1.1