From a120ed39a6ef1c2085deab490092b83d819e2546 Mon Sep 17 00:00:00 2001 From: Richard Levitte Date: Thu, 14 May 2015 17:36:13 +0200 Subject: [PATCH] Add -Iinclude to crypto/ compiles The move of headers from crypto/ to crypto/include/internal/ needs this extra inclusion directory or the build fails. Reviewed-by: Rich Salz --- crypto/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crypto/Makefile b/crypto/Makefile index caffc77b4a..8f9697e34c 100644 --- a/crypto/Makefile +++ b/crypto/Makefile @@ -5,7 +5,7 @@ DIR= crypto TOP= .. CC= cc -INCLUDE= -I. -I$(TOP) -I../include $(ZLIB_INCLUDE) +INCLUDE= -I. -I$(TOP) -I../include -Iinclude $(ZLIB_INCLUDE) # INCLUDES targets sudbirs! INCLUDES= -I.. -I../.. -I../modes -I../include -I../../include $(ZLIB_INCLUDE) CFLAG= -g -- GitLab