diff options
| author | anton <> | 2026-03-29 06:19:12 +0000 |
|---|---|---|
| committer | anton <> | 2026-03-29 06:19:12 +0000 |
| commit | 66d7751c9972254d6d0f07fca49cf3533f291b5c (patch) | |
| tree | 5b74783fc9299842a9a4be27efa0e23f54565e46 /src/regress/lib | |
| parent | b691bbfcac89ff4cadab20821c931ce1d672b9c9 (diff) | |
| download | openbsd-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/lib')
| -rw-r--r-- | src/regress/lib/libcrypto/assembly/Makefile | 5 |
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 | ||
| 3 | EGCC = /usr/local/bin/egcc | 3 | EGCC = /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} |
| 25 | regress-${assembly}: | 25 | regress-${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 | ||
| 29 | REGRESS_TARGETS += regress-${assembly} | 30 | REGRESS_TARGETS += regress-${assembly} |
| 30 | 31 | ||
