Date: Thu, 19 Sep 2013 15:22:39 +0000 (UTC) From: Pietro Cerutti <gahr@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r327631 - head/Mk/Uses Message-ID: <201309191522.r8JFMdCm044879@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201309191522.r8JFMdCm044879>