aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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.