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
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 \
_______________________________________________
[email protected] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to "[email protected]"

Reply via email to