diff options
author | rillig <rillig@pkgsrc.org> | 2005-11-20 08:07:30 +0000 |
---|---|---|
committer | rillig <rillig@pkgsrc.org> | 2005-11-20 08:07:30 +0000 |
commit | 6f1c497a94838ac41ddd30a655fa2cbab9388820 (patch) | |
tree | 0116fba402019064d4c04ee3fc3e0cae5b5ee7c2 /mk/bsd.pkg.mk | |
parent | 6590ccc27c3509c6af38388f125b1d71a26bf93a (diff) | |
download | pkgsrc-6f1c497a94838ac41ddd30a655fa2cbab9388820.tar.gz |
Added subshell parentheses around the command for updating pkg_install.
This allows for copy&paste.
Diffstat (limited to 'mk/bsd.pkg.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 e4573bcef37..a14abfe5820 100644 --- a/mk/bsd.pkg.mk +++ b/mk/bsd.pkg.mk @@ -1,4 +1,4 @@ -# $NetBSD: bsd.pkg.mk,v 1.1763 2005/11/20 01:11:14 rillig Exp $ +# $NetBSD: bsd.pkg.mk,v 1.1764 2005/11/20 08:07:30 rillig Exp $ # # This file is in the public domain. # @@ -225,7 +225,7 @@ PKG_FAIL_REASON+='Error: The package tools installed on this system are out of d PKG_FAIL_REASON+='The installed package tools are dated ${PKGTOOLS_VERSION:C|(....)(..)(..)|\1/\2/\3|} and you must update' PKG_FAIL_REASON+='them to at least ${PKGTOOLS_REQD:C|(....)(..)(..)|\1/\2/\3|} using the following command:' PKG_FAIL_REASON+='' -PKG_FAIL_REASON+=' cd ${PKGSRCDIR}/pkgtools/pkg_install && ${MAKE} clean && ${MAKE} update' +PKG_FAIL_REASON+=' (cd ${PKGSRCDIR}/pkgtools/pkg_install && ${MAKE} clean && ${MAKE} update)' . endif .endif # !NO_PKGTOOLS_REQD_CHECK |