svn commit: r539740 - head/sysutils/fusefs-smbnetfs

Baptiste Daroussin bapt at FreeBSD.org
Sat Jun 20 14:29:29 UTC 2020


Author: bapt
Date: Sat Jun 20 14:29:28 2020
New Revision: 539740
URL: https://svnweb.freebsd.org/changeset/ports/539740

Log:
  Correct the call to pkgconf
  
  In older pkgconf, pkgconf --version and pkgconf --modversion were both
  printing out the version of the .pc modules, for compatibility with freedesktop
  pkg-config behaviour. This compatibility has been removed in order for pkgconf to
  print its own version and modversion actually is the switch to ask for the module
  version

Modified:
  head/sysutils/fusefs-smbnetfs/Makefile

Modified: head/sysutils/fusefs-smbnetfs/Makefile
==============================================================================
--- head/sysutils/fusefs-smbnetfs/Makefile	Sat Jun 20 14:21:46 2020	(r539739)
+++ head/sysutils/fusefs-smbnetfs/Makefile	Sat Jun 20 14:29:28 2020	(r539740)
@@ -50,7 +50,7 @@ LDFLAGS+=	-lthr
 .else
 FUSEPKG=	fuse
 .endif
-FUSE_VERSION=	"`pkgconf --version ${FUSEPKG} |	\
+FUSE_VERSION=	"`pkgconf --modversion ${FUSEPKG} |	\
 		    ${SED} -E 's,^([0-9]+)\.([0-9]+)\..*,\1\2,'`"
 
 .include <bsd.port.post.mk>


More information about the svn-ports-head mailing list