Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 19 Jul 2022 18:02:27 GMT
From:      Dimitry Andric <dim@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-branches@FreeBSD.org
Subject:   git: 40450c3acb6c - stable/13 - WPA_DISTDIR does not need to end in a slash
Message-ID:  <202207191802.26JI2Rkm076929@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch stable/13 has been updated by dim:

URL: https://cgit.FreeBSD.org/src/commit/?id=40450c3acb6c5fd6f8e3e3ac21bc79ae857728f1

commit 40450c3acb6c5fd6f8e3e3ac21bc79ae857728f1
Author:     Dimitry Andric <dim@FreeBSD.org>
AuthorDate: 2022-07-16 15:45:26 +0000
Commit:     Dimitry Andric <dim@FreeBSD.org>
CommitDate: 2022-07-19 18:00:56 +0000

    WPA_DISTDIR does not need to end in a slash
    
    Since all uses of the macro also append a slash, this leads to double
    slashes.
    
    MFC after:      3 days
    
    (cherry picked from commit 9917049b60f7cf7345a09d2bc22d51764a477984)
---
 usr.sbin/wpa/Makefile.inc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/usr.sbin/wpa/Makefile.inc b/usr.sbin/wpa/Makefile.inc
index d35fe520b532..d674d3ae5fd2 100644
--- a/usr.sbin/wpa/Makefile.inc
+++ b/usr.sbin/wpa/Makefile.inc
@@ -6,7 +6,7 @@ BINDIR?=	/usr/sbin
 
 WARNS?=		0
 
-WPA_DISTDIR?= 		${SRCTOP}/contrib/wpa/
+WPA_DISTDIR?= 		${SRCTOP}/contrib/wpa
 WPA_SUPPLICANT_DISTDIR?=${WPA_DISTDIR}/wpa_supplicant
 HOSTAPD_DISTDIR?=	${WPA_DISTDIR}/hostapd
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202207191802.26JI2Rkm076929>