Add new include path for sha256.h

This fixes the bootstrap build on FreeBSD 10.

Submitted by:	andrew
This commit is contained in:
Craig Rodrigues 2015-07-12 03:39:36 +00:00
parent 97fc027722
commit 3a6dcb1fad
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=285417

View File

@ -48,7 +48,8 @@ CLEANFILES+= md[245]hl.c md[245].ref md[245].3 mddriver \
# in which case:
# * macros are used to rename symbols to libcrypt internal names
# * no weak aliases are generated
CFLAGS+= -I${.CURDIR} -DWEAK_REFS
CFLAGS+= -I${.CURDIR} -I${.CURDIR}/../../sys/crypto/sha2
CFLAGS+= -DWEAK_REFS
.PATH: ${.CURDIR}/${MACHINE_ARCH} ${.CURDIR}/../../sys/crypto/sha2
.if exists(${MACHINE_ARCH}/sha.S)