The branch main has been updated by osa: URL: https://cgit.FreeBSD.org/src/commit/?id=22c7815118da73183c55630e5773bcee8c65cbf1
commit 22c7815118da73183c55630e5773bcee8c65cbf1 Author: Sergey A. Osokin <o...@freebsd.org> AuthorDate: 2025-06-18 21:40:22 +0000 Commit: Sergey A. Osokin <o...@freebsd.org> CommitDate: 2025-06-18 21:40:22 +0000 exec(3): add missing execvpe(3) to MLINKS Reviewed by: glebius --- lib/libc/gen/Makefile.inc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/libc/gen/Makefile.inc b/lib/libc/gen/Makefile.inc index 65a2b9d19bb6..1ab3b026ac07 100644 --- a/lib/libc/gen/Makefile.inc +++ b/lib/libc/gen/Makefile.inc @@ -370,7 +370,8 @@ MLINKS+=exec.3 execl.3 \ exec.3 exect.3 \ exec.3 execv.3 \ exec.3 execvP.3 \ - exec.3 execvp.3 + exec.3 execvp.3 \ + exec.3 execvpe.3 MLINKS+=fpclassify.3 finite.3 \ fpclassify.3 finitef.3 \ fpclassify.3 isfinite.3 \