Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 23 Nov 2020 11:50:47 +0000 (UTC)
From:      Matthias Fechner <mfechner@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r556104 - head/textproc/ruby-htree
Message-ID:  <202011231150.0ANBolg5094620@repo.freebsd.org>

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



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