summaryrefslogtreecommitdiff
path: root/src/regress
diff options
context:
space:
mode:
authoranton <>2026-03-29 06:19:12 +0000
committeranton <>2026-03-29 06:19:12 +0000
commit66d7751c9972254d6d0f07fca49cf3533f291b5c (patch)
tree5b74783fc9299842a9a4be27efa0e23f54565e46 /src/regress
parentb691bbfcac89ff4cadab20821c931ce1d672b9c9 (diff)
downloadopenbsd-66d7751c9972254d6d0f07fca49cf3533f291b5c.tar.gz
openbsd-66d7751c9972254d6d0f07fca49cf3533f291b5c.tar.bz2
openbsd-66d7751c9972254d6d0f07fca49cf3533f291b5c.zip
Add missing include path required to reach newly added crypto_assembly.h
include.
Diffstat (limited to 'src/regress')
-rw-r--r--src/regress/lib/libcrypto/assembly/Makefile5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/regress/lib/libcrypto/assembly/Makefile b/src/regress/lib/libcrypto/assembly/Makefile
index 9df34a644b..3d34198cee 100644
--- a/src/regress/lib/libcrypto/assembly/Makefile
+++ b/src/regress/lib/libcrypto/assembly/Makefile
@@ -1,4 +1,4 @@
1# $OpenBSD: Makefile,v 1.2 2026/01/25 14:57:43 tb Exp $ 1# $OpenBSD: Makefile,v 1.3 2026/03/29 06:19:12 anton Exp $
2 2
3EGCC = /usr/local/bin/egcc 3EGCC = /usr/local/bin/egcc
4 4
@@ -24,7 +24,8 @@ ASSEMBLY += sha/sha512_amd64_generic.S
24.for assembly in ${ASSEMBLY} 24.for assembly in ${ASSEMBLY}
25regress-${assembly}: 25regress-${assembly}:
26 @echo "Checking ${assembly} compiles with gcc" 26 @echo "Checking ${assembly} compiles with gcc"
27 @${EGCC} -o /dev/null -c ${.CURDIR}/../../../../lib/libcrypto/${assembly} 27 @${EGCC} -I${.CURDIR}/../../../../lib/libcrypto -o /dev/null -c \
28 ${.CURDIR}/../../../../lib/libcrypto/${assembly}
28 29
29REGRESS_TARGETS += regress-${assembly} 30REGRESS_TARGETS += regress-${assembly}
30 31