aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorJose Luis Duran <jlduran@FreeBSD.org>2025-02-04 14:15:12 +0000
committerJose Luis Duran <jlduran@FreeBSD.org>2025-02-04 14:15:12 +0000
commit841856570e7b623c4f1283939936ffa005d2fcf4 (patch)
tree7fead8b6f82ea499e6d1cabd0fadb3c071207b9e /lib
parentdc4b36b96333f2ab05f3c454f0df2e0a0d4d451d (diff)
csu tests: Remove extra slash
Remove an extra slash that ends up in the metalog. This double slash can produce an invalid specification file if there are subdirectories down the hierarchy when sorted. For example, consider the following metalog excerpt: ./base/aaa type=dir ./base//aaa/bbb type=dir If sorted, would turn out: ./base//aaa/bbb type=dir ./base/aaa type=dir Apparently missing the ./base/aaa directory in the specification. Luckily here are no subdirectories. Reviewed by: imp, emaste Approved by: emaste (mentor) MFC after: 1 week Differential Revision: https://reviews.freebsd.org/D48778
Diffstat (limited to 'lib')
-rw-r--r--lib/csu/tests/dso/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/csu/tests/dso/Makefile b/lib/csu/tests/dso/Makefile
index 2f2b8c90ac29..6c1d00e9fb58 100644
--- a/lib/csu/tests/dso/Makefile
+++ b/lib/csu/tests/dso/Makefile
@@ -18,6 +18,6 @@ SRCS+= ${src}.c
SRCS+= ${src}.cc
.endfor
-LIBDIR= ${TESTSBASE}/lib/csu/dynamiclib/
+LIBDIR= ${TESTSBASE}/lib/csu/dynamiclib
.include <bsd.lib.mk>