Date: Sat, 20 Jun 2020 14:29:28 +0000 (UTC) From: Baptiste Daroussin <bapt@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r539740 - head/sysutils/fusefs-smbnetfs Message-ID: <202006201429.05KETSuX008249@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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>
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202006201429.05KETSuX008249>