diff options
author | kristerw <kristerw@pkgsrc.org> | 2007-04-01 19:02:14 +0000 |
---|---|---|
committer | kristerw <kristerw@pkgsrc.org> | 2007-04-01 19:02:14 +0000 |
commit | 14eee92e9520db7e8f3b36dca7536d3a41765651 (patch) | |
tree | 46f82a87d3b0ce51ede12873a722d97edb1c2c41 /mk | |
parent | 1faaaf4bfc16a958e780fc8e2f0682270bf44d33 (diff) | |
download | pkgsrc-14eee92e9520db7e8f3b36dca7536d3a41765651.tar.gz |
Fix quoting issue that gave syntax error when printing the message
that new package tools are needed.
Diffstat (limited to 'mk')
-rw-r--r-- | mk/bsd.pkg.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mk/bsd.pkg.mk b/mk/bsd.pkg.mk index fbc889f365b..916e6d58637 100644 --- a/mk/bsd.pkg.mk +++ b/mk/bsd.pkg.mk @@ -1,4 +1,4 @@ -# $NetBSD: bsd.pkg.mk,v 1.1909 2007/03/02 06:01:44 wiz Exp $ +# $NetBSD: bsd.pkg.mk,v 1.1910 2007/04/01 19:02:14 kristerw Exp $ # # This file is in the public domain. # @@ -132,7 +132,7 @@ PKG_FAIL_REASON+= "This package doesn't support PKG_INSTALLATION_TYPE=${PKG_INST PKG_FAIL_REASON+='The package tools installed on this system are out of date.' PKG_FAIL_REASON+='The installed package tools are dated ${PKGTOOLS_VERSION:C|(....)(..)(..)|\1/\2/\3|} and you must' PKG_FAIL_REASON+='update them to at least ${PKGTOOLS_REQD:C|(....)(..)(..)|\1/\2/\3|} using the following command:' -PKG_FAIL_REASON+='' +PKG_FAIL_REASON+=' ' PKG_FAIL_REASON+=' (cd ${PKGSRCDIR}/pkgtools/pkg_install && ${MAKE} clean && ${MAKE} update)' . endif .endif # !NO_PKGTOOLS_REQD_CHECK |