bsdbox: use paths relative to SRCTOP instead of .CURDIR

This has been the going trend for years now, so switch to it.

Reviewed by:	adrian, imp
Differential Revision:	https://reviews.freebsd.org/D42502
This commit is contained in:
Kyle Evans 2025-04-20 22:44:54 -05:00
parent 635891d1c3
commit e018d97ce5

View file

@ -3,15 +3,18 @@
#
#
.include <src.opts.mk>
WPASRC?= ${SRCTOP}/usr.sbin/wpa
CRUNCH_PROGS_usr.sbin+= hostapd hostapd_cli
CRUNCH_SRCDIR_hostapd= $(.CURDIR)/../../usr.sbin/wpa/hostapd
CRUNCH_SRCDIR_hostapd_cli= $(.CURDIR)/../../usr.sbin/wpa/hostapd_cli
CRUNCH_SRCDIR_hostapd= ${WPASRC}/hostapd
CRUNCH_SRCDIR_hostapd_cli= ${WPASRC}/hostapd_cli
CRUNCH_KEEP_hostapd+= wpa_driver_bsd_ops
CRUNCH_PROGS_usr.sbin+= wpa_supplicant wpa_cli
CRUNCH_SRCDIR_wpa_supplicant= $(.CURDIR)/../../usr.sbin/wpa/wpa_supplicant
CRUNCH_SRCDIR_wpa_cli= $(.CURDIR)/../../usr.sbin/wpa/wpa_cli
CRUNCH_SRCDIR_wpa_supplicant= ${WPASRC}/wpa_supplicant
CRUNCH_SRCDIR_wpa_cli= ${WPASRC}/wpa_cli
.if ${MK_OFED} != "no"
# libpcap dependencies if OFED is enabled