summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexey Dokuchaev <danfe@FreeBSD.org>2016-08-26 08:42:27 +0000
committerAlexey Dokuchaev <danfe@FreeBSD.org>2016-08-26 08:42:27 +0000
commitbbf1349240a3218c63bada5051345882eb79d2b8 (patch)
treed71328871428757588f1d2e911ccf0fece8abb92
parentaudio/cmus: 2.6.0 -> 2.7.1 (diff)
Do not terminate IGNORE messages with period, it is added by the framework.
Notes
Notes: svn path=/head/; revision=420904
-rw-r--r--Mk/Uses/gssapi.mk2
-rw-r--r--Mk/bsd.ldap.mk2
-rw-r--r--Mk/bsd.linux-rpm.mk2
-rw-r--r--Mk/bsd.ruby.mk4
4 files changed, 5 insertions, 5 deletions
diff --git a/Mk/Uses/gssapi.mk b/Mk/Uses/gssapi.mk
index e673988dde3f..373dd1792d6f 100644
--- a/Mk/Uses/gssapi.mk
+++ b/Mk/Uses/gssapi.mk
@@ -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}
diff --git a/Mk/bsd.ldap.mk b/Mk/bsd.ldap.mk
index e3d358fe59d4..453c857280d9 100644
--- a/Mk/bsd.ldap.mk
+++ b/Mk/bsd.ldap.mk
@@ -45,7 +45,7 @@ _OPENLDAP_VER!= ${LOCALBASE}/bin/ldapwhoami -VV 2>&1 | ${GREP} ldapwhoami | ${SE
.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)
diff --git a/Mk/bsd.linux-rpm.mk b/Mk/bsd.linux-rpm.mk
index 2a9d996630ac..96fe9f30bda0 100644
--- a/Mk/bsd.linux-rpm.mk
+++ b/Mk/bsd.linux-rpm.mk
@@ -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
diff --git a/Mk/bsd.ruby.mk b/Mk/bsd.ruby.mk
index b1b6394bf93f..017d50ac938c 100644
--- a/Mk/bsd.ruby.mk
+++ b/Mk/bsd.ruby.mk
@@ -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