summaryrefslogtreecommitdiff
path: root/Mk
diff options
context:
space:
mode:
authorOlli Hauer <ohauer@FreeBSD.org>2011-08-20 18:58:52 +0000
committerOlli Hauer <ohauer@FreeBSD.org>2011-08-20 18:58:52 +0000
commiteb60c758ae0ee5d0b3b30b14db642aecba2ba33d (patch)
tree63ed5c53b0819caa945a82da05bd659e484c0db8 /Mk
parentThere's no strict depend on IO::Tty, but you need if you will work with (diff)
- adjust USE_APACHE sample
USE_APACHE value is preferred without "." since bsd.apache.mk has to rip out the "." for further processing. Support for "." in the value is taret for change.
Notes
Notes: svn path=/head/; revision=280091
Diffstat (limited to 'Mk')
-rw-r--r--Mk/bsd.apache.mk5
1 files changed, 3 insertions, 2 deletions
diff --git a/Mk/bsd.apache.mk b/Mk/bsd.apache.mk
index b085b416a6e9..e6002539cdcb 100644
--- a/Mk/bsd.apache.mk
+++ b/Mk/bsd.apache.mk
@@ -37,13 +37,14 @@
#
# Examples:
# USE_APACHE= 22 # specify exact version
-# USE_APACHE= 1.3+ # specify [min] version, no [max] version
+# USE_APACHE= 13+ # specify [min] version, no [max] version
# USE_APACHE= 13-22 # specify [min]-[max] range
-# USE_APACHE= -2.2 # specify [max] version, no [min] version
+# USE_APACHE= -22 # specify [max] version, no [min] version
#
# Note:
# - Values can be specified with and without "." (dot) between major
# and minor version numbers. For example 22 is equal to 2.2
+# Preferred is to define the value without "."
#
# - If "+" is specified and no apache is installed, then
# ${DEFAULT_APACHE_VERSION} will be used.