Date: Sun, 29 Apr 2012 14:14:14 +0200 From: Bernhard Schmidt <bschmidt@freebsd.org> To: lev@freebsd.org Cc: Current FreeBSD <freebsd-current@freebsd.org> Subject: Re: 10.0-CURRENT could not be built: make: don't know how to make blacklist.c. Stop Message-ID: <201204291414.15397.bschmidt@freebsd.org> In-Reply-To: <4810068524.20120429153838@serebryakov.spb.ru> References: <4810068524.20120429153838@serebryakov.spb.ru>
next in thread | previous in thread | raw e-mail | index | archive | help
--Boundary-00=_XCTnPT0a8PmNemD Content-Type: Text/Plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit On Sunday 29 April 2012 13:38:38 Lev Serebryakov wrote: > Hello, Current. > > > I'm trying to build fresh (several minutes ago) 10.0-CURRENT/i386 on > month-old 10.0-CURRENT/i386. And it fails in very beginning: > > ===> usr.sbin/wpa (depend) > ===> usr.sbin/wpa/wpa_supplicant (depend) > make: don't know how to make blacklist.c. Stop > *** [depend] Error code 2 > > I've looked at "usr.sbin/wpa/wpa_supplicant/Makefile" and found here > only ".PATH.c:${WPA_DISTDIR}/src/drivers", without > "${WPA_SUPPLICANT_DISTDIR". > > hostapd is same story. > > Revisions in question seems to be r234756 and r234711. Just noticed that myself a few minutes ago.. I'm about to commit attached fix in few minutes. Wanna give it a quick shot? Other then that, removing WITHOUT_EXAMPLES from src.conf helps too, that's why I missed it. -- Bernhard --Boundary-00=_XCTnPT0a8PmNemD Content-Type: text/x-patch; charset="UTF-8"; name="wpa.diff" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="wpa.diff" Index: usr.sbin/wpa/wpa_supplicant/Makefile =================================================================== --- usr.sbin/wpa/wpa_supplicant/Makefile (revision 234784) +++ usr.sbin/wpa/wpa_supplicant/Makefile (working copy) @@ -2,7 +2,8 @@ .include "${.CURDIR}/../Makefile.inc" -.PATH.c:${WPA_DISTDIR}/src/drivers +.PATH.c:${WPA_SUPPLICANT_DISTDIR} \ + ${WPA_DISTDIR}/src/drivers PROG= wpa_supplicant SRCS= aes-unwrap.c \ Index: usr.sbin/wpa/hostapd/Makefile =================================================================== --- usr.sbin/wpa/hostapd/Makefile (revision 234784) +++ usr.sbin/wpa/hostapd/Makefile (working copy) @@ -2,7 +2,8 @@ .include "${.CURDIR}/../Makefile.inc" -.PATH.c:${WPA_DISTDIR}/src/drivers +.PATH.c:${HOSTAPD_DISTDIR} \ + ${WPA_DISTDIR}/src/drivers PROG= hostapd SRCS= accounting.c \ --Boundary-00=_XCTnPT0a8PmNemD--
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201204291414.15397.bschmidt>