Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 2 May 2013 22:10:11 +0000 (UTC)
From:      Baptiste Daroussin <bapt@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r317162 - head/x11/xorg-apps
Message-ID:  <201305022210.r42MABo0050590@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: bapt
Date: Thu May  2 22:10:11 2013
New Revision: 317162
URL: http://svnweb.freebsd.org/changeset/ports/317162

Log:
  Fix a bug in glob matching (spotted by bmake(1))

Modified:
  head/x11/xorg-apps/Makefile

Modified: head/x11/xorg-apps/Makefile
==============================================================================
--- head/x11/xorg-apps/Makefile	Thu May  2 22:06:50 2013	(r317161)
+++ head/x11/xorg-apps/Makefile	Thu May  2 22:10:11 2013	(r317162)
@@ -42,7 +42,7 @@ ${comp:C/:.*//:C/.*\///:U}_DESC=	Install
 
 .for comp in ${COMPONENTS}
 . if ${PORT_OPTIONS:M${comp:C/:.*//:C/.*\///:U}}
-.  if ${comp:M:}==""
+.  if ${comp:M*\:*}==""
 port=${comp}
 check=${comp:C/.*\///} # doesn't work
 .  else



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