diff options
author | hubertf <hubertf@pkgsrc.org> | 2004-10-01 00:23:18 +0000 |
---|---|---|
committer | hubertf <hubertf@pkgsrc.org> | 2004-10-01 00:23:18 +0000 |
commit | a245094c0265030b124ec240686693cf5ba4db39 (patch) | |
tree | afecc99d25a6d332c5759b79178454c8e0c83510 /mk | |
parent | eb1778ad3d5b250ba9bfa1f3fb09d6a1d128bb8b (diff) | |
download | pkgsrc-a245094c0265030b124ec240686693cf5ba4db39.tar.gz |
Update the wording a bit when a license is not accepted, to better
indicate the proper process: first read the license, then accept,
and indicate so in /etc/mk.conf:
yui% make
===> graphviz-1.12 has an unacceptable license: graphviz-license.
===> To view the license, enter "/usr/bin/make show-license".
===> To indicate acceptance, add this line to your /etc/mk.conf:
===> ACCEPTABLE_LICENSES+=graphviz-license
*** Error code 1
Diffstat (limited to 'mk')
-rw-r--r-- | mk/bsd.pkg.mk | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/mk/bsd.pkg.mk b/mk/bsd.pkg.mk index cd710e81002..c0e61a81e32 100644 --- a/mk/bsd.pkg.mk +++ b/mk/bsd.pkg.mk @@ -1,4 +1,4 @@ -# $NetBSD: bsd.pkg.mk,v 1.1503 2004/09/27 19:37:36 tv Exp $ +# $NetBSD: bsd.pkg.mk,v 1.1504 2004/10/01 00:23:18 hubertf Exp $ # # This file is in the public domain. # @@ -1304,9 +1304,9 @@ _ACCEPTABLE= yes . endif # ACCEPTABLE_LICENSES . ifndef _ACCEPTABLE PKG_FAIL_REASON+= "${PKGNAME} has an unacceptable license: ${LICENSE}." \ - " To build this package, add this line to your /etc/mk.conf:" \ - " ACCEPTABLE_LICENSES+=${LICENSE}" \ - " To view the license, enter \"${MAKE} show-license\"." + " To view the license, enter \"${MAKE} show-license\"." \ + " To indicate acceptance, add this line to your /etc/mk.conf:" \ + " ACCEPTABLE_LICENSES+=${LICENSE}" . endif # _ACCEPTABLE . endif # LICENSE |