mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
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
(cherry picked from commit 841856570e7b623c4f1283939936ffa005d2fcf4)
This commit is contained in:
parent
e58d9b71f3
commit
ac74f9a654
1 changed files with 1 additions and 1 deletions
|
|
@ -19,6 +19,6 @@ SRCS+= ${src}.c
|
|||
SRCS+= ${src}.cc
|
||||
.endfor
|
||||
|
||||
LIBDIR= ${TESTSBASE}/lib/csu/dynamiclib/
|
||||
LIBDIR= ${TESTSBASE}/lib/csu/dynamiclib
|
||||
|
||||
.include <bsd.lib.mk>
|
||||
|
|
|
|||
Loading…
Reference in a new issue