mirror of
https://git.freebsd.org/src.git
synced 2026-01-11 19:57:22 +00:00
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:
parent
635891d1c3
commit
e018d97ce5
1 changed files with 7 additions and 4 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue