23 lines
		
	
	
		
			602 B
		
	
	
	
		
			Diff
		
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			602 B
		
	
	
	
		
			Diff
		
	
	
	
| From c1bd2dd68e6c55767cf39e65f841c80c696ff7ae Mon Sep 17 00:00:00 2001
 | |
| From: Moritz Rosenthal <moritz.rosenthal@netmodule.com>
 | |
| Date: Sat, 29 Feb 2020 21:17:05 +0100
 | |
| Subject: [PATCH] Use environment variable EXTRA_CFLAGS
 | |
| 
 | |
| ---
 | |
|  src/lib.rules | 2 +-
 | |
|  1 file changed, 1 insertion(+), 1 deletion(-)
 | |
| 
 | |
| diff --git a/src/lib.rules b/src/lib.rules
 | |
| index 947617b07..ffdfc5c8d 100644
 | |
| --- a/src/lib.rules
 | |
| +++ b/src/lib.rules
 | |
| @@ -10,7 +10,7 @@ CFLAGS += -DTEST_FUZZ
 | |
|  endif
 | |
|  
 | |
|  CFLAGS += $(FUZZ_CFLAGS)
 | |
| -CFLAGS += -I.. -I../utils
 | |
| +CFLAGS += -I.. -I../utils $(EXTRA_CFLAGS)
 | |
|  
 | |
|  _OBJS_VAR := LIB_OBJS
 | |
|  include ../objs.mk
 |