Date: Fri, 26 Aug 2016 08:42:27 +0000 (UTC) From: Alexey Dokuchaev <danfe@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r420904 - in head/Mk: . Uses Message-ID: <201608260842.u7Q8gRfL018857@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: danfe Date: Fri Aug 26 08:42:27 2016 New Revision: 420904 URL: https://svnweb.freebsd.org/changeset/ports/420904 Log: Do not terminate IGNORE messages with period, it is added by the framework. Modified: head/Mk/Uses/gssapi.mk head/Mk/bsd.ldap.mk head/Mk/bsd.linux-rpm.mk head/Mk/bsd.ruby.mk Modified: head/Mk/Uses/gssapi.mk ============================================================================== --- head/Mk/Uses/gssapi.mk Fri Aug 26 08:02:05 2016 (r420903) +++ head/Mk/Uses/gssapi.mk Fri Aug 26 08:42:27 2016 (r420904) @@ -87,7 +87,7 @@ gssapi_ARGS= base _local:= ${_A} .if ${_local} == "base" . if ${SSL_DEFAULT} != base -IGNORE= You are using OpenSSL from ports and have selected GSSAPI from base, please select another GSSAPI value. +IGNORE= You are using OpenSSL from ports and have selected GSSAPI from base, please select another GSSAPI value . endif HEIMDAL_HOME= /usr GSSAPIBASEDIR= ${HEIMDAL_HOME} Modified: head/Mk/bsd.ldap.mk ============================================================================== --- head/Mk/bsd.ldap.mk Fri Aug 26 08:02:05 2016 (r420903) +++ head/Mk/bsd.ldap.mk Fri Aug 26 08:42:27 2016 (r420904) @@ -45,7 +45,7 @@ _OPENLDAP_VER!= ${LOCALBASE}/bin/ldapwho .if defined(WANT_OPENLDAP_VER) .if defined(WITH_OPENLDAP_VER) && ${WITH_OPENLDAP_VER} != ${WANT_OPENLDAP_VER} -IGNORE= cannot install: the port wants openldap${WANT_OPENLDAP_VER}-client and you try to install openldap${WITH_OPENLDAP_VER}-client. +IGNORE= cannot install: the port wants openldap${WANT_OPENLDAP_VER}-client and you try to install openldap${WITH_OPENLDAP_VER}-client .endif OPENLDAP_VER= ${WANT_OPENLDAP_VER} .elif defined(WITH_OPENLDAP_VER) Modified: head/Mk/bsd.linux-rpm.mk ============================================================================== --- head/Mk/bsd.linux-rpm.mk Fri Aug 26 08:02:05 2016 (r420903) +++ head/Mk/bsd.linux-rpm.mk Fri Aug 26 08:42:27 2016 (r420904) @@ -47,7 +47,7 @@ NO_BUILD= yes . if ${USE_LINUX} == "c6" || ${USE_LINUX} == "c6_64" || ${USE_LINUX} == "yes" # default to CentOS # Do not build CentOS 6 ports if overridden by f10 . if defined(OVERRIDE_LINUX_NONBASE_PORTS) && ${OVERRIDE_LINUX_NONBASE_PORTS} == "f10" -IGNORE= This port requires CentOS ${LINUX_DIST_VER}. Please remove OVERRIDE_LINUX_NONBASE_PORTS=f10 in /etc/make.conf. +IGNORE= requires CentOS ${LINUX_DIST_VER}. Please remove OVERRIDE_LINUX_NONBASE_PORTS=f10 in /etc/make.conf . endif . endif Modified: head/Mk/bsd.ruby.mk ============================================================================== --- head/Mk/bsd.ruby.mk Fri Aug 26 08:02:05 2016 (r420903) +++ head/Mk/bsd.ruby.mk Fri Aug 26 08:42:27 2016 (r420904) @@ -138,12 +138,12 @@ RUBY_VER?= ${RUBY_DEFAULT_VER} .if defined(RUBY) .if !exists(${RUBY}) -IGNORE= cannot install: you set the variable RUBY to "${RUBY}", but it does not seem to exist. Please specify an already installed ruby executable. +IGNORE= cannot install: you set the variable RUBY to "${RUBY}", but it does not seem to exist. Please specify an already installed ruby executable .endif _RUBY_TEST!= ${RUBY} -e 'begin; require "rbconfig"; puts "ok" ; rescue LoadError; puts "error"; end' .if !empty(_RUBY_TEST) && ${_RUBY_TEST} != "ok" -IGNORE= cannot install: you set the variable RUBY to "${RUBY}", but it failed to include rbconfig. Please specify a properly installed ruby executable. +IGNORE= cannot install: you set the variable RUBY to "${RUBY}", but it failed to include rbconfig. Please specify a properly installed ruby executable .endif _RUBY_CONFIG= ${RUBY} -r rbconfig -e 'C = RbConfig::CONFIG' -e
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201608260842.u7Q8gRfL018857>