svn commit: r202892 - head/usr.bin

Antoine Brodin antoine at FreeBSD.org
Sat Jan 23 17:31:14 UTC 2010


Author: antoine
Date: Sat Jan 23 17:31:13 2010
New Revision: 202892
URL: http://svn.freebsd.org/changeset/base/202892

Log:
  Unbreak world WITHOUT_OPENSSL:
  the new dc(1) depends on crypto(3) and bc(1) depends on dc(1).

Modified:
  head/usr.bin/Makefile

Modified: head/usr.bin/Makefile
==============================================================================
--- head/usr.bin/Makefile	Sat Jan 23 16:40:35 2010	(r202891)
+++ head/usr.bin/Makefile	Sat Jan 23 17:31:13 2010	(r202892)
@@ -18,7 +18,7 @@ SUBDIR=	alias \
 	awk \
 	banner \
 	basename \
-	bc \
+	${_bc} \
 	${_biff} \
 	${_bluetooth} \
 	brandelf \
@@ -50,7 +50,7 @@ SUBDIR=	alias \
 	${_csup} \
 	${_ctags} \
 	cut \
-	dc \
+	${_dc} \
 	${_dig} \
 	dirname \
 	du \
@@ -280,7 +280,9 @@ _hesinfo=	hesinfo
 .endif
 
 .if ${MK_OPENSSL} != "no"
+_bc=		bc
 _chkey=		chkey
+_dc=		dc
 _newkey=	newkey
 .if ${MK_LIBTHR} != "no"
 _csup=		csup


More information about the svn-src-head mailing list