svn commit: r373025 - head/Mk
Baptiste Daroussin
bapt at FreeBSD.org
Sat Nov 22 01:41:59 UTC 2014
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
More information about the svn-ports-head
mailing list