aboutsummaryrefslogtreecommitdiff
path: root/usr.sbin/pkg_install
diff options
context:
space:
mode:
authorRuslan Ermilov <ru@FreeBSD.org>2004-12-21 10:16:04 +0000
committerRuslan Ermilov <ru@FreeBSD.org>2004-12-21 10:16:04 +0000
commita216173556ede5d21d5157db945767a08201aae1 (patch)
tree39f12b382ddd99639a5d2e7415eefaadf4ff8ef9 /usr.sbin/pkg_install
parent83c7ade90a32f8aaff4de282b9fc2493076a54b9 (diff)
downloadsrc-a216173556ede5d21d5157db945767a08201aae1.tar.gz
src-a216173556ede5d21d5157db945767a08201aae1.zip
NOCRYPT -> NO_CRYPT
Notes
Notes: svn path=/head/; revision=139113
Diffstat (limited to 'usr.sbin/pkg_install')
-rw-r--r--usr.sbin/pkg_install/Makefile2
-rw-r--r--usr.sbin/pkg_install/Makefile.inc2
2 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/pkg_install/Makefile b/usr.sbin/pkg_install/Makefile
index ee4019b83749..e74b5dca6a3a 100644
--- a/usr.sbin/pkg_install/Makefile
+++ b/usr.sbin/pkg_install/Makefile
@@ -2,7 +2,7 @@
SUBDIR= lib add create delete info ${_sign} version
-.if !defined(NOCRYPT) && !defined(NO_OPENSSL)
+.if !defined(NO_CRYPT) && !defined(NO_OPENSSL)
_sign= sign
.endif
diff --git a/usr.sbin/pkg_install/Makefile.inc b/usr.sbin/pkg_install/Makefile.inc
index 89c259340944..46518b9c2aa5 100644
--- a/usr.sbin/pkg_install/Makefile.inc
+++ b/usr.sbin/pkg_install/Makefile.inc
@@ -6,7 +6,7 @@ LIBINSTALL= ${.OBJDIR}/../lib/libinstall.a
LIBINSTALL= ${.CURDIR}/../lib/libinstall.a
.endif
-.if !defined(NOCRYPT) && !defined(NO_OPENSSL) && \
+.if !defined(NO_CRYPT) && !defined(NO_OPENSSL) && \
defined(LDADD) && ${LDADD:M-lfetch} != ""
DPADD+= ${LIBSSL} ${LIBCRYPTO}
LDADD+= -lssl -lcrypto