Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 12 Aug 2018 10:12:50 +0000 (UTC)
From:      Sevan Janiyan <sevan@FreeBSD.org>
To:        doc-committers@freebsd.org, svn-doc-all@freebsd.org, svn-doc-head@freebsd.org
Subject:   svn commit: r52119 - head
Message-ID:  <201808121012.w7CACoif073552@repo.freebsd.org>

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



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