aboutsummaryrefslogtreecommitdiffstats
path: root/Mk
diff options
context:
space:
mode:
authorohauer <ohauer@FreeBSD.org>2011-08-21 02:58:52 +0800
committerohauer <ohauer@FreeBSD.org>2011-08-21 02:58:52 +0800
commitc86974756831dfa075be404ab16b7560636d8979 (patch)
tree9969c26ec5dbdefa67d6cd1bcc57f31ab3193098 /Mk
parentef8f9d4301bf5c8149e084e4a56edba8fe9cd75b (diff)
downloadfreebsd-ports-gnome-c86974756831dfa075be404ab16b7560636d8979.tar.gz
freebsd-ports-gnome-c86974756831dfa075be404ab16b7560636d8979.tar.zst
freebsd-ports-gnome-c86974756831dfa075be404ab16b7560636d8979.zip
- 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.
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.