svn commit: r327631 - head/Mk/Uses

Pietro Cerutti gahr at FreeBSD.org
Thu Sep 19 15:22:40 UTC 2013


Author: gahr
Date: Thu Sep 19 15:22:39 2013
New Revision: 327631
URL: http://svnweb.freebsd.org/changeset/ports/327631

Log:
  - Fix on < 10

Modified:
  head/Mk/Uses/tcl.mk

Modified: head/Mk/Uses/tcl.mk
==============================================================================
--- head/Mk/Uses/tcl.mk	Thu Sep 19 15:19:45 2013	(r327630)
+++ head/Mk/Uses/tcl.mk	Thu Sep 19 15:22:39 2013	(r327631)
@@ -99,7 +99,8 @@ IGNORE=	USES=${_TCLTK_PORT}: incorrect $
 
 .if defined(_TCLTK_MIN_VERSION)
 .  for _v in ${_TCLTK_VALID_VERSIONS}
-.    if ${_v} >= ${_TCLTK_MIN_VERSION} && exists(${LOCALBASE}/lib/lib${_TCLTK_PORT}${_v}.so)
+.    if ${_TCLTK_MIN_VERSION} < ${_v} || !exists(${LOCALBASE}/lib/lib${_TCLTK_PORT}${_v}.so)
+.    else
 _TCLTK_WANTED_VERSION=	${_v}
 .    endif
 .  endfor


More information about the svn-ports-all mailing list