svn commit: r234786 - in head/usr.sbin/wpa: hostapd wpa_supplicant

Bernhard Schmidt bschmidt at FreeBSD.org
Sun Apr 29 12:48:53 UTC 2012


Author: bschmidt
Date: Sun Apr 29 12:48:52 2012
New Revision: 234786
URL: http://svn.freebsd.org/changeset/base/234786

Log:
  Fix WITHOUT_EXAMPLES build:
  While removing unnecessary entries from .PATH.c I missed that for the
  examples WPA_SUPPLICANT_DISTDIR/HOSTAPD_DISTDIR is explicitly added to
  .PATH.
  
  Tested by:	lev
  MFC after:	2 weeks

Modified:
  head/usr.sbin/wpa/hostapd/Makefile
  head/usr.sbin/wpa/wpa_supplicant/Makefile

Modified: head/usr.sbin/wpa/hostapd/Makefile
==============================================================================
--- head/usr.sbin/wpa/hostapd/Makefile	Sun Apr 29 11:04:31 2012	(r234785)
+++ head/usr.sbin/wpa/hostapd/Makefile	Sun Apr 29 12:48:52 2012	(r234786)
@@ -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 \

Modified: head/usr.sbin/wpa/wpa_supplicant/Makefile
==============================================================================
--- head/usr.sbin/wpa/wpa_supplicant/Makefile	Sun Apr 29 11:04:31 2012	(r234785)
+++ head/usr.sbin/wpa/wpa_supplicant/Makefile	Sun Apr 29 12:48:52 2012	(r234786)
@@ -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 \


More information about the svn-src-head mailing list