10.0-CURRENT could not be built: make: don't know how to make blacklist.c. Stop

2012-04-29 Thread Lev Serebryakov
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.

-- 
// Black Lion AKA Lev Serebryakov l...@freebsd.org

___
freebsd-current@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to freebsd-current-unsubscr...@freebsd.org


Re: 10.0-CURRENT could not be built: make: don't know how to make blacklist.c. Stop

2012-04-29 Thread Bernhard Schmidt
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 \
___
freebsd-current@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to freebsd-current-unsubscr...@freebsd.org

Re: 10.0-CURRENT could not be built: make: don't know how to make blacklist.c. Stop

2012-04-29 Thread Lev Serebryakov
Hello, Bernhard.
You wrote 29 апреля 2012 г., 16:14:14:

BS Just noticed that myself a few minutes ago.. I'm about to commit
BS attached fix in few minutes. Wanna give it a quick shot?
 Yep, it helps :)

-- 
// Black Lion AKA Lev Serebryakov l...@freebsd.org

___
freebsd-current@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to freebsd-current-unsubscr...@freebsd.org


Re: 10.0-CURRENT could not be built: make: don't know how to make blacklist.c. Stop

2012-04-29 Thread Bernhard Schmidt
On Sunday 29 April 2012 14:33:26 Lev Serebryakov wrote:
 Hello, Bernhard.
 You wrote 29 апреля 2012 г., 16:14:14:
 
 BS Just noticed that myself a few minutes ago.. I'm about to commit
 BS attached fix in few minutes. Wanna give it a quick shot?
  Yep, it helps :)

Committed, sorry for the breakage. 

-- 
Bernhard
___
freebsd-current@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to freebsd-current-unsubscr...@freebsd.org