PERFORCE change 131743 for review

Peter Wemm peter at FreeBSD.org
Wed Dec 26 16:13:37 PST 2007


http://perforce.freebsd.org/chv.cgi?CH=131743

Change 131743 by peter at 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


More information about the p4-projects mailing list