From owner-svn-src-stable-11@freebsd.org Tue May 30 04:45:13 2017 Return-Path: Delivered-To: svn-src-stable-11@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5DB23AFC2E0; Tue, 30 May 2017 04:45:13 +0000 (UTC) (envelope-from ngie@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 1C4B277E57; Tue, 30 May 2017 04:45:13 +0000 (UTC) (envelope-from ngie@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v4U4jCw8095823; Tue, 30 May 2017 04:45:12 GMT (envelope-from ngie@FreeBSD.org) Received: (from ngie@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v4U4jBuA095815; Tue, 30 May 2017 04:45:11 GMT (envelope-from ngie@FreeBSD.org) Message-Id: <201705300445.v4U4jBuA095815@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ngie set sender to ngie@FreeBSD.org using -f From: Ngie Cooper Date: Tue, 30 May 2017 04:45:11 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-11@freebsd.org Subject: svn commit: r319190 - in stable/11/usr.sbin/wpa: . hostapd hostapd_cli wpa_cli wpa_passphrase wpa_priv wpa_supplicant X-SVN-Group: stable-11 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-stable-11@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for only the 11-stable src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 30 May 2017 04:45:13 -0000 Author: ngie Date: Tue May 30 04:45:11 2017 New Revision: 319190 URL: https://svnweb.freebsd.org/changeset/base/319190 Log: MFC r314541: Use SRCTOP-relative paths to other directories instead of .CURDIR-relative ones This simplifies pathing in make/displayed output. Modified: stable/11/usr.sbin/wpa/Makefile.inc stable/11/usr.sbin/wpa/hostapd/Makefile stable/11/usr.sbin/wpa/hostapd_cli/Makefile stable/11/usr.sbin/wpa/wpa_cli/Makefile stable/11/usr.sbin/wpa/wpa_passphrase/Makefile stable/11/usr.sbin/wpa/wpa_priv/Makefile stable/11/usr.sbin/wpa/wpa_supplicant/Makefile Directory Properties: stable/11/ (props changed) Modified: stable/11/usr.sbin/wpa/Makefile.inc ============================================================================== --- stable/11/usr.sbin/wpa/Makefile.inc Tue May 30 04:42:36 2017 (r319189) +++ stable/11/usr.sbin/wpa/Makefile.inc Tue May 30 04:45:11 2017 (r319190) @@ -2,11 +2,11 @@ BINDIR?= /usr/sbin -WPA_DISTDIR?= ${.CURDIR}/../../../contrib/wpa/ +WPA_DISTDIR?= ${SRCTOP}/contrib/wpa/ WPA_SUPPLICANT_DISTDIR?=${WPA_DISTDIR}/wpa_supplicant HOSTAPD_DISTDIR?= ${WPA_DISTDIR}/hostapd -.PATH.c:${.CURDIR}/.. \ +.PATH.c:${.CURDIR:H} \ ${WPA_DISTDIR}/src/ap \ ${WPA_DISTDIR}/src/common \ ${WPA_DISTDIR}/src/crypto \ Modified: stable/11/usr.sbin/wpa/hostapd/Makefile ============================================================================== --- stable/11/usr.sbin/wpa/hostapd/Makefile Tue May 30 04:42:36 2017 (r319189) +++ stable/11/usr.sbin/wpa/hostapd/Makefile Tue May 30 04:45:11 2017 (r319190) @@ -1,7 +1,7 @@ # $FreeBSD$ .include -.include "${.CURDIR}/../Makefile.inc" +.include "../Makefile.inc" .PATH.c:${HOSTAPD_DISTDIR} \ ${WPA_DISTDIR}/src/drivers @@ -117,6 +117,6 @@ SRCS+= eap_server_sake.c \ eap_sake_common.c .endif -.include "${.CURDIR}/../Makefile.crypto" +.include "../Makefile.crypto" .include Modified: stable/11/usr.sbin/wpa/hostapd_cli/Makefile ============================================================================== --- stable/11/usr.sbin/wpa/hostapd_cli/Makefile Tue May 30 04:42:36 2017 (r319189) +++ stable/11/usr.sbin/wpa/hostapd_cli/Makefile Tue May 30 04:45:11 2017 (r319190) @@ -1,6 +1,6 @@ # $FreeBSD$ -.include "${.CURDIR}/../Makefile.inc" +.include "../Makefile.inc" .PATH.c:${HOSTAPD_DISTDIR} Modified: stable/11/usr.sbin/wpa/wpa_cli/Makefile ============================================================================== --- stable/11/usr.sbin/wpa/wpa_cli/Makefile Tue May 30 04:42:36 2017 (r319189) +++ stable/11/usr.sbin/wpa/wpa_cli/Makefile Tue May 30 04:45:11 2017 (r319190) @@ -1,6 +1,6 @@ # $FreeBSD$ -.include "${.CURDIR}/../Makefile.inc" +.include "../Makefile.inc" .PATH.c:${WPA_SUPPLICANT_DISTDIR} Modified: stable/11/usr.sbin/wpa/wpa_passphrase/Makefile ============================================================================== --- stable/11/usr.sbin/wpa/wpa_passphrase/Makefile Tue May 30 04:42:36 2017 (r319189) +++ stable/11/usr.sbin/wpa/wpa_passphrase/Makefile Tue May 30 04:45:11 2017 (r319190) @@ -1,6 +1,6 @@ # $FreeBSD$ -.include "${.CURDIR}/../Makefile.inc" +.include "../Makefile.inc" .PATH.c:${WPA_SUPPLICANT_DISTDIR} Modified: stable/11/usr.sbin/wpa/wpa_priv/Makefile ============================================================================== --- stable/11/usr.sbin/wpa/wpa_priv/Makefile Tue May 30 04:42:36 2017 (r319189) +++ stable/11/usr.sbin/wpa/wpa_priv/Makefile Tue May 30 04:45:11 2017 (r319190) @@ -1,6 +1,6 @@ # $FreeBSD$ -.include "${.CURDIR}/../Makefile.inc" +.include "../Makefile.inc" .PATH.c:${WPA_SUPPLICANT_DISTDIR} \ ${WPA_DISTDIR}/src/drivers @@ -11,6 +11,6 @@ SRCS= drivers.c os_unix.c eloop.c common.c wpa_debug.c LIBADD= pcap -.include "${.CURDIR}/../Makefile.crypto" +.include "../Makefile.crypto" .include Modified: stable/11/usr.sbin/wpa/wpa_supplicant/Makefile ============================================================================== --- stable/11/usr.sbin/wpa/wpa_supplicant/Makefile Tue May 30 04:42:36 2017 (r319189) +++ stable/11/usr.sbin/wpa/wpa_supplicant/Makefile Tue May 30 04:45:11 2017 (r319190) @@ -2,7 +2,7 @@ .include -.include "${.CURDIR}/../Makefile.inc" +.include "../Makefile.inc" .PATH.c:${WPA_SUPPLICANT_DISTDIR} \ ${WPA_DISTDIR}/src/drivers @@ -142,6 +142,6 @@ SRCS+= eap_sake.c \ eap_sake_common.c .endif -.include "${.CURDIR}/../Makefile.crypto" +.include "../Makefile.crypto" .include