Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 23 Jan 2010 17:31:13 +0000 (UTC)
From:      Antoine Brodin <antoine@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r202892 - head/usr.bin
Message-ID:  <201001231731.o0NHVDNY071237@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201001231731.o0NHVDNY071237>