svn commit: r446641 - head/ftp/wget

Vasil Dimov vd at FreeBSD.org
Wed Jul 26 07:12:58 UTC 2017


Author: vd
Date: Wed Jul 26 07:12:57 2017
New Revision: 446641
URL: https://svnweb.freebsd.org/changeset/ports/446641

Log:
  ftp/wget: Fix makeinfo path
  
  On FreeBSD 10.x makeinfo is located in /usr/bin/makeinfo, whereas on 11.x
  it is located in /usr/local/bin/makeinfo. Don't specify its full path
  location like DOCS_CONFIGURE_ENV= MAKEINFO="${LOCALBASE}/bin/makeinfo"
  since having it in PATH (either in /usr/bin or /usr/local/bin) suffices.
  
  Reported by:	Walter Schwarzenfeld <w.schwarzenfeld at utanet.at>

Modified:
  head/ftp/wget/Makefile

Modified: head/ftp/wget/Makefile
==============================================================================
--- head/ftp/wget/Makefile	Wed Jul 26 05:02:41 2017	(r446640)
+++ head/ftp/wget/Makefile	Wed Jul 26 07:12:57 2017	(r446641)
@@ -27,7 +27,6 @@ OPTIONS_DEFINE=	DOCS IDN IPV6 MANPAGES METALINK NLS PC
 OPTIONS_DEFAULT=DOCS IDN IPV6 MANPAGES NLS OPENSSL
 
 DOCS_DESC=	Install info page
-DOCS_CONFIGURE_ENV=	MAKEINFO="${LOCALBASE}/bin/makeinfo"
 DOCS_INFO=	wget
 DOCS_USES=	makeinfo
 


More information about the svn-ports-all mailing list