svn commit: r484505 - head/Mk/Uses

Kubilay Kocak koobs at FreeBSD.org
Fri Nov 9 08:30:06 UTC 2018


Author: koobs
Date: Fri Nov  9 08:30:05 2018
New Revision: 484505
URL: https://svnweb.freebsd.org/changeset/ports/484505

Log:
  Mk/Uses/meson.mk: Fix missing $ in INFO_PATH variable
  
  Add missing $ inadvertently committed in ports r484481
  
  PR:		232633
  Reported by:	danfe (via ports-committers)
  Approved by:	portmgr (blanket: just fix it)

Modified:
  head/Mk/Uses/meson.mk

Modified: head/Mk/Uses/meson.mk
==============================================================================
--- head/Mk/Uses/meson.mk	Fri Nov  9 07:53:36 2018	(r484504)
+++ head/Mk/Uses/meson.mk	Fri Nov  9 08:30:05 2018	(r484505)
@@ -36,7 +36,7 @@ USE_LOCALE?=	en_US.UTF-8
 
 CONFIGURE_ARGS+=	--prefix ${PREFIX} \
 			--mandir man \
-			--infodir {INFO_PATH}
+			--infodir ${INFO_PATH}
 
 # meson has it own strip mechanic
 INSTALL_TARGET=		install


More information about the svn-ports-all mailing list