svn commit: r186838 - stable/6/usr.sbin/wpa/wpa_supplicant

Christian Brueffer brueffer at FreeBSD.org
Tue Jan 6 12:19:52 PST 2009


Author: brueffer
Date: Tue Jan  6 20:19:49 2009
New Revision: 186838
URL: http://svn.freebsd.org/changeset/base/186838

Log:
  Unbreak build by fixing the conditional.
  
  Approved by:	bz
  Pointy Hat To:	danger

Modified:
  stable/6/usr.sbin/wpa/wpa_supplicant/Makefile

Modified: stable/6/usr.sbin/wpa/wpa_supplicant/Makefile
==============================================================================
--- stable/6/usr.sbin/wpa/wpa_supplicant/Makefile	Tue Jan  6 19:52:40 2009	(r186837)
+++ stable/6/usr.sbin/wpa/wpa_supplicant/Makefile	Tue Jan  6 20:19:49 2009	(r186838)
@@ -11,7 +11,7 @@ SRCS=	config.c eloop.c common.c md5.c rc
 
 MAN=	wpa_supplicant.8 wpa_supplicant.conf.5
 
-.if ${MK_EXAMPLES} != "no"
+.if !defined(NO_SHARE)
 FILESDIR= ${SHAREDIR}/examples/etc
 FILES=	wpa_supplicant.conf
 .endif


More information about the svn-src-all mailing list