diff options
author | Jose Luis Duran <jlduran@FreeBSD.org> | 2025-02-04 15:19:50 +0000 |
---|---|---|
committer | Jose Luis Duran <jlduran@FreeBSD.org> | 2025-02-04 15:23:25 +0000 |
commit | 955f974a1a37cf3ae8b241327b1fef74c8932855 (patch) | |
tree | c6a5811aae7aee9a8be877c22c4a1019e8a2043e | |
parent | 1ed9b381d4701fc9f66741256e93b96e22273217 (diff) |
mk: Add missing escape character
Add a missing escape character that splits a long line to avoid breaking
the builds.
Reported by: cy
Approved by: emaste (mentor)
Fixes: 88d448ec815c ("mk: Move vm stack test debug symbols")
MFC after: 1 week
-rw-r--r-- | share/mk/bsd.lib.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/share/mk/bsd.lib.mk b/share/mk/bsd.lib.mk index a4b2e4d11125..b7d6b333523b 100644 --- a/share/mk/bsd.lib.mk +++ b/share/mk/bsd.lib.mk @@ -254,7 +254,7 @@ SHLIB_NAME_FULL=${SHLIB_NAME}.full # Use ${DEBUGDIR} for base system debug files, else .debug subdirectory .if ${_SHLIBDIR} == "/boot" ||\ ${SHLIBDIR:C%/lib(/.*)?$%/lib%} == "/lib" ||\ - ${SHLIBDIR:C%/usr/lib(32|exec)?(/.*)?%/usr/lib%} == "/usr/lib" || + ${SHLIBDIR:C%/usr/lib(32|exec)?(/.*)?%/usr/lib%} == "/usr/lib" ||\ ${SHLIBDIR:C%/usr/tests(/.*)?%/usr/tests%} == "/usr/tests" DEBUGFILEDIR=${DEBUGDIR}${_SHLIBDIR} .else |