svn commit: r556104 - head/textproc/ruby-htree

Matthias Fechner mfechner at FreeBSD.org
Mon Nov 23 11:50:47 UTC 2020


Author: mfechner
Date: Mon Nov 23 11:50:46 2020
New Revision: 556104
URL: https://svnweb.freebsd.org/changeset/ports/556104

Log:
  Correct build for ruby 2.7.
  Ruby 2.6 has following files available:
  1 lrwxr-xr-x  1 root  wheel    6 Oct 13 10:45 /usr/local/bin/rdoc -> rdoc26
  5 -rwxr-xr-x  1 root  wheel  518 Oct 13 10:44 /usr/local/bin/rdoc26
  
  Ruby 2.7 has:
  6 -rwxr-xr-x  1 root  wheel  518 Nov 23 07:28 /usr/local/bin/rdoc
  
  So there is no need to have a version included for the rdoc command.

Modified:
  head/textproc/ruby-htree/Makefile

Modified: head/textproc/ruby-htree/Makefile
==============================================================================
--- head/textproc/ruby-htree/Makefile	Mon Nov 23 11:42:14 2020	(r556103)
+++ head/textproc/ruby-htree/Makefile	Mon Nov 23 11:50:46 2020	(r556104)
@@ -29,7 +29,7 @@ PORTDOCS=	*
 
 do-build:
 .if ${PORT_OPTIONS:MDOCS}
-	cd ${BUILD_WRKSRC}; ${LOCALBASE}/bin/rdoc${RUBY_SUFFIX} ${LIB_FILES}
+	cd ${BUILD_WRKSRC}; ${LOCALBASE}/bin/rdoc ${LIB_FILES}
 .endif
 
 do-install:


More information about the svn-ports-all mailing list