diff options
author | rillig <rillig@pkgsrc.org> | 2005-10-08 22:42:08 +0000 |
---|---|---|
committer | rillig <rillig@pkgsrc.org> | 2005-10-08 22:42:08 +0000 |
commit | cc8905f21d401187a9ca945c5e688e1768d861e4 (patch) | |
tree | ed3223f46e424009a237c861f46a9b6bfd23d2f5 /security | |
parent | 9ab9e579e198cee79ce7e2001bd5aa51dfc4ad83 (diff) | |
download | pkgsrc-cc8905f21d401187a9ca945c5e688e1768d861e4.tar.gz |
Fixed shell quoting in echo(1) commands.
Diffstat (limited to 'security')
-rw-r--r-- | security/pgp2/Makefile | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/security/pgp2/Makefile b/security/pgp2/Makefile index 7fc430fd858..05e45595a34 100644 --- a/security/pgp2/Makefile +++ b/security/pgp2/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.44 2005/08/01 13:10:07 wiz Exp $ +# $NetBSD: Makefile,v 1.45 2005/10/08 22:42:08 rillig Exp $ DISTNAME= pgp263is CATEGORIES= security @@ -69,12 +69,12 @@ INSTALLATION_DIRS= bin man/man1 .if !defined(USE_RSAREF2) || ${USE_RSAREF2} != YES && ${USE_RSAREF2} != NO pre-fetch: - @${ECHO} - @${ECHO} The variable USE_RSAREF2 must be set to either YES or NO - @${ECHO} in order to build this package. USA residents that are - @${ECHO} no licensees of the RSA algorithm MUST set this variable - @${ECHO} to YES. Users outside the USA MUST set this variable to - @${ECHO} NO. Licensees may choose -- NO is faster. + @${ECHO} "" + @${ECHO} "The variable USE_RSAREF2 must be set to either YES or NO" + @${ECHO} "in order to build this package. USA residents that are" + @${ECHO} "no licensees of the RSA algorithm MUST set this variable" + @${ECHO} "to YES. Users outside the USA MUST set this variable to" + @${ECHO} "NO. Licensees may choose -- NO is faster." @${FALSE} .endif |