Re: 10.0-CURRENT could not be built: make: don't know how to mak

看板FB_current作者時間13年前 (2012/05/02 10:01), 編輯推噓0(000)
留言0則, 0人參與, 最新討論串3/3 (看更多)
--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 Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Disposition: inline _______________________________________________ freebsd-current@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-current To unsubscribe, send any mail to "freebsd-current-unsubscribe@freebsd.org" --Boundary-00=_XCTnPT0a8PmNemD--
文章代碼(AID): #1Fe9M0EK (FB_current)
文章代碼(AID): #1Fe9M0EK (FB_current)