Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 27 Dec 2007 00:13:36 GMT
From:      Peter Wemm <peter@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 131743 for review
Message-ID:  <200712270013.lBR0DaLM029024@repoman.freebsd.org>

next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=131743

Change 131743 by peter@peter_overcee on 2007/12/27 00:13:30

	Create ${MK_SVN} and use it to control hook linkage.

Affected files ...

.. //depot/projects/hammer/Makefile.inc1#130 edit
.. //depot/projects/hammer/share/mk/bsd.own.mk#22 edit
.. //depot/projects/hammer/usr.bin/Makefile#57 edit

Differences ...

==== //depot/projects/hammer/Makefile.inc1#130 (text+ko) ====

@@ -1081,7 +1081,8 @@
 _default_thread_lib=	lib/libkse
 .endif
 
-_generic_libs=	${_cddl_lib} gnu/lib ${_kerberos5_lib} lib ${_secure_lib} usr.bin/lex/lib usr.bin/svn/lib
+_generic_libs=	${_cddl_lib} gnu/lib ${_kerberos5_lib} lib ${_secure_lib} \
+		usr.bin/lex/lib ${_svn_lib}
 
 lib/libopie__L lib/libtacplus__L: lib/libmd__L
 
@@ -1089,6 +1090,10 @@
 _cddl_lib= cddl/lib
 .endif
 
+.if ${MK_SVN} != "no"
+_svn_lib=	usr.bin/svn/lib
+.endif
+
 .if ${MK_CRYPT} != "no"
 .if ${MK_OPENSSL} != "no"
 _secure_lib_libcrypto= secure/lib/libcrypto

==== //depot/projects/hammer/share/mk/bsd.own.mk#22 (text+ko) ====

@@ -355,6 +355,7 @@
     SETUID_LOGIN \
     SHAREDOCS \
     SSP \
+    SVN \
     SYMVER \
     SYSCONS \
     TCSH \

==== //depot/projects/hammer/usr.bin/Makefile#57 (text+ko) ====

@@ -173,6 +173,7 @@
 	split \
 	stat \
 	su \
+	${_svn} \
 	systat \
 	tabs \
 	tail \
@@ -290,6 +291,10 @@
 _vacation=	vacation
 .endif
 
+.if ${MK_SVN} != "no"
+_svn=		svn
+.endif
+
 .if ${MK_TOOLCHAIN} != "no"
 _c89=		c89
 _c99=		c99



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