diff options
| author | Mark Johnston <markj@FreeBSD.org> | 2025-11-21 17:54:38 +0000 |
|---|---|---|
| committer | Mark Johnston <markj@FreeBSD.org> | 2025-11-24 14:28:42 +0000 |
| commit | 673924122470463dfb9089e12b1b4496783a77b8 (patch) | |
| tree | fd79c3802dccfe798bd2eaf3a03dd083542fbaf2 | |
| parent | 0628c252bd161ccdd1228a3b8aefeb471044ca04 (diff) | |
krb5: Use sh to run mk_cmds
Otherwise etcupdate apparently can fail if its private object directory
under /var/db is in a filesystem mounted noexec. We shouldn't be
building this target at all, but for now, just apply this workaround.
PR: 291043
Reviewed by: ivy, cy, des
MFC after: 1 week
Differential Revision: https://reviews.freebsd.org/D53861
| -rw-r--r-- | krb5/util/ss/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/krb5/util/ss/Makefile b/krb5/util/ss/Makefile index 2c48ccf56573..30e1bf7b025e 100644 --- a/krb5/util/ss/Makefile +++ b/krb5/util/ss/Makefile @@ -85,7 +85,7 @@ ${GEN_SS_ERR_C}: ${GEN_SS_ERR} rm -f et-c-${.PREFIX}.et et-c-${.PREFIX}.c std_rqs.c: mk_cmds std_rqs.ct ss_err.h - ./mk_cmds ${KRB5_DIR}/util/ss/std_rqs.ct + sh mk_cmds ${KRB5_DIR}/util/ss/std_rqs.ct .include <bsd.lib.mk> |
