aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorErwin Lansing <erwin@FreeBSD.org>2006-02-06 12:36:50 +0000
committerErwin Lansing <erwin@FreeBSD.org>2006-02-06 12:36:50 +0000
commitc99b9bbb8f0c0b16c6fc85fb7ae0e04d6a6d3b64 (patch)
treecdb4337e4c6a0f247b2e88b61289463eec936cb8
parent404872b681f48cda5452b297246ab429e7853ceb (diff)
Replace a call to pkg_version without full path with ${PKG_VERSION}
Approved by: Ion-Mihai Tetcu (maintainer)
Notes
Notes: svn path=/head/; revision=155322
-rw-r--r--mail/dspam/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/mail/dspam/Makefile b/mail/dspam/Makefile
index def9c48c4bc5..bf3fb7366b4f 100644
--- a/mail/dspam/Makefile
+++ b/mail/dspam/Makefile
@@ -127,7 +127,7 @@ DSPAM_HOME_MODE?= 0770
MIN_OPTIONS_VER= dspam-devel-3.6.3
.ifdef(_OPTIONS_READ)
-OPTIONS_CMP!= pkg_version -t ${_OPTIONS_READ} ${MIN_OPTIONS_VER}
+OPTIONS_CMP!= ${PKG_VERSION} -t ${_OPTIONS_READ} ${MIN_OPTIONS_VER}
. if ${OPTIONS_CMP} == "<"
OPTIONS_MESSAGE= "You have unsupported (old) OPTIONS, please do a 'make config; make'"
. endif