Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 22 Nov 2014 01:41:59 +0000 (UTC)
From:      Baptiste Daroussin <bapt@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r373025 - head/Mk
Message-ID:  <201411220141.sAM1fxUK070920@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: bapt
Date: Sat Nov 22 01:41:58 2014
New Revision: 373025
URL: https://svnweb.freebsd.org/changeset/ports/373025
QAT: https://qat.redports.org/buildarchive/r373025/

Log:
  Define SOELIM
  If base have the new soeliminate(1) then use it first otherwise fallback on
  groff's soelim

Modified:
  head/Mk/bsd.commands.mk

Modified: head/Mk/bsd.commands.mk
==============================================================================
--- head/Mk/bsd.commands.mk	Sat Nov 22 00:34:21 2014	(r373024)
+++ head/Mk/bsd.commands.mk	Sat Nov 22 01:41:58 2014	(r373025)
@@ -104,6 +104,11 @@ XZ_CMD?=		/usr/bin/xz ${XZ}
 
 MD5?=			/sbin/md5
 SHA256?=		/sbin/sha256
+.if exist(/usr/bin/soeliminate)
+SOELIM?=		/usr/bin/soeliminate
+.else
+SOELIM?=		/usr/bin/soelim
+.endif
 
 # ECHO is defined in /usr/share/mk/sys.mk, which can either be "echo",
 # or "true" if the make flag -s is given.  Use ECHO_CMD where you mean



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