]> code.ossystems Code Review - meta-freescale.git/blob
2163998bd74b4af52491404c1ab8d794f6fed59f
[meta-freescale.git] /
1 From 596735ad86a3dae987e19c21ef22259179966fc6 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.0
28