]> code.ossystems Code Review - meta-freescale.git/blob
7cfad9cd7b507e1579f707725e37298cfc66dfae
[meta-freescale.git] /
1 From e50560cb9a201c0b0130bb29d4c99121a8ec97ba Mon Sep 17 00:00:00 2001
2 From: Cristian Stoica <cristian.stoica@nxp.com>
3 Date: Mon, 8 Feb 2016 15:15:02 +0200
4 Subject: [PATCH 47/48] cryptodev: treat all build warnings as errors
5
6 This patch has the purpose of maintaining a higher level of code quality.
7
8 Signed-off-by: Cristian Stoica <cristian.stoica@nxp.com>
9 ---
10  crypto/engine/Makefile | 2 +-
11  1 file changed, 1 insertion(+), 1 deletion(-)
12
13 diff --git a/crypto/engine/Makefile b/crypto/engine/Makefile
14 index 426388e..010f21d 100644
15 --- a/crypto/engine/Makefile
16 +++ b/crypto/engine/Makefile
17 @@ -10,7 +10,7 @@ CFLAG=-g
18  MAKEFILE=      Makefile
19  AR=            ar r
20  
21 -CFLAGS= $(INCLUDES) $(CFLAG)
22 +CFLAGS= -Wall -Werror $(INCLUDES) $(CFLAG)
23  
24  GENERAL=Makefile
25  TEST= enginetest.c
26 -- 
27 2.7.3
28