diff options
author | jsing <> | 2023-01-31 05:13:28 +0000 |
---|---|---|
committer | jsing <> | 2023-01-31 05:13:28 +0000 |
commit | f778e2dfb38549abc1d2b20ea58318a0056beca0 (patch) | |
tree | 387c3ed8f927541b36b4d76f6e525c08b613b809 | |
parent | 405b59803d1d0002d3b6452ed4f3a54ab668b455 (diff) | |
download | openbsd-f778e2dfb38549abc1d2b20ea58318a0056beca0.tar.gz openbsd-f778e2dfb38549abc1d2b20ea58318a0056beca0.tar.bz2 openbsd-f778e2dfb38549abc1d2b20ea58318a0056beca0.zip |
Add bn/arch/${MACHINE_CPU} to the include path.
This will be needed once headers pull in bn_arch.h.
-rw-r--r-- | src/regress/lib/libcrypto/bn/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/regress/lib/libcrypto/bn/Makefile b/src/regress/lib/libcrypto/bn/Makefile index c3d9def45c..2852b2e469 100644 --- a/src/regress/lib/libcrypto/bn/Makefile +++ b/src/regress/lib/libcrypto/bn/Makefile | |||
@@ -1,4 +1,4 @@ | |||
1 | # $OpenBSD: Makefile,v 1.20 2023/01/29 15:18:49 jsing Exp $ | 1 | # $OpenBSD: Makefile,v 1.21 2023/01/31 05:13:28 jsing Exp $ |
2 | 2 | ||
3 | PROGS += bn_add_sub | 3 | PROGS += bn_add_sub |
4 | PROGS += bn_cmp | 4 | PROGS += bn_cmp |
@@ -29,6 +29,7 @@ DPADD = ${LIBCRYPTO} | |||
29 | WARNINGS = Yes | 29 | WARNINGS = Yes |
30 | CFLAGS += -Wall -Wundef -Werror | 30 | CFLAGS += -Wall -Wundef -Werror |
31 | CFLAGS += -I${.CURDIR}/../../../../lib/libcrypto/bn/ | 31 | CFLAGS += -I${.CURDIR}/../../../../lib/libcrypto/bn/ |
32 | CFLAGS += -I${.CURDIR}/../../../../lib/libcrypto/bn/arch/${MACHINE_CPU}/ | ||
32 | 33 | ||
33 | # Use default targets from bsd.regress.mk unless overridden below | 34 | # Use default targets from bsd.regress.mk unless overridden below |
34 | REGRESS_TARGETS = ${PROGS:S/^/run-regress-/} | 35 | REGRESS_TARGETS = ${PROGS:S/^/run-regress-/} |