svn commit: r52119 - head
Sevan Janiyan
sevan at FreeBSD.org
Sun Aug 12 10:12:51 UTC 2018
Author: sevan
Date: Sun Aug 12 10:12:50 2018
New Revision: 52119
URL: https://svnweb.freebsd.org/changeset/doc/52119
Log:
Handle building on systems utilising WITH_SVN knob.
PR: 227973
Submitted by: Dries Michiels <dries.michiels at gmail>
Approved by: bcr (mentor)
Sponsored by: Essen Hackathon
Differential Revision: https://reviews.freebsd.org/D16695
Modified:
head/Makefile
Modified: head/Makefile
==============================================================================
--- head/Makefile Sun Aug 12 09:31:51 2018 (r52118)
+++ head/Makefile Sun Aug 12 10:12:50 2018 (r52119)
@@ -37,6 +37,8 @@ DOC_PREFIX?= ${.CURDIR}
.if exists(/usr/bin/svnlite)
SVN?= /usr/bin/svnlite
+.elif exists(/usr/bin/svn)
+SVN?= /usr/bin/svn
.else
SVN?= /usr/local/bin/svn
.endif
More information about the svn-doc-all
mailing list