mirror of
https://github.com/opnsense/src.git
synced 2026-02-28 20:30:57 -05:00
This solves an issue on stable/12 that causes certs to not get installed. ls is apparently not in PATH during installworld, so TRUSTED_CERTS ends up blank and nothing gets installed. We don't really require anything ls-specific, though, so let's just simplify it. MFC after: 3 days
12 lines
222 B
Makefile
12 lines
222 B
Makefile
# $FreeBSD$
|
|
|
|
BINDIR= /usr/share/certs/trusted
|
|
|
|
TRUSTED_CERTS!= echo ${.CURDIR}/*.pem 2> /dev/null || true
|
|
|
|
FILES+= ${TRUSTED_CERTS}
|
|
|
|
cleancerts:
|
|
@[ -z "${TRUSTED_CERTS}" ] || rm ${TRUSTED_CERTS}
|
|
|
|
.include <bsd.prog.mk>
|