Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 29 Apr 2012 12:48:52 +0000 (UTC)
From:      Bernhard Schmidt <bschmidt@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r234786 - in head/usr.sbin/wpa: hostapd wpa_supplicant
Message-ID:  <201204291248.q3TCmqGk014783@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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 \



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201204291248.q3TCmqGk014783>