svn commit: r265627 - head/share/mk

Warner Losh imp at FreeBSD.org
Thu May 8 02:18:37 UTC 2014


Author: imp
Date: Thu May  8 02:18:36 2014
New Revision: 265627
URL: http://svnweb.freebsd.org/changeset/base/265627

Log:
  Fix a typo make should have complained about.
  
  Submitted by: Mark Johnston

Modified:
  head/share/mk/bsd.mkopt.mk

Modified: head/share/mk/bsd.mkopt.mk
==============================================================================
--- head/share/mk/bsd.mkopt.mk	Thu May  8 01:43:33 2014	(r265626)
+++ head/share/mk/bsd.mkopt.mk	Thu May  8 02:18:36 2014	(r265627)
@@ -42,7 +42,7 @@ MK_${var}:=	yes
 #
 .for var in ${__DEFAULT_NO_OPTIONS}
 .if !defined(MK_${var})
-.if definfed(WITH_${var} && !defined(WITHOUT_${var}) # WITHOUT aways wins
+.if defined(WITH_${var} && !defined(WITHOUT_${var}) # WITHOUT aways wins
 MK_${var}:=	yes
 .else
 MK_${var}:=	no


More information about the svn-src-head mailing list