diff options
author | johans <johans@FreeBSD.org> | 2010-11-10 01:45:20 +0800 |
---|---|---|
committer | johans <johans@FreeBSD.org> | 2010-11-10 01:45:20 +0800 |
commit | af4a10b2179575ead8b7ac784d3bd4495553104c (patch) | |
tree | 7c7e4921950e83a4b0ea782171619eac83187720 /security/xmlsec1 | |
parent | 429d8e92f473ac5f3211060dce1228d41fa92b31 (diff) | |
download | freebsd-ports-graphics-af4a10b2179575ead8b7ac784d3bd4495553104c.tar.gz freebsd-ports-graphics-af4a10b2179575ead8b7ac784d3bd4495553104c.tar.zst freebsd-ports-graphics-af4a10b2179575ead8b7ac784d3bd4495553104c.zip |
Fix quoting in installed *.pc (pkg-config) files.
This should fix security/lasso as well.
Upstream bug report: https://bugzilla.gnome.org/show_bug.cgi?id=631258
PR: ports/152070
Submitted by: Tom Judge <tom@tomjudge.com>
Diffstat (limited to 'security/xmlsec1')
-rw-r--r-- | security/xmlsec1/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/security/xmlsec1/Makefile b/security/xmlsec1/Makefile index 084afb20d8a..a87a0bce63e 100644 --- a/security/xmlsec1/Makefile +++ b/security/xmlsec1/Makefile @@ -7,6 +7,7 @@ PORTNAME= xmlsec1 PORTVERSION= 1.2.16 +PORTREVISION= 1 CATEGORIES= security MASTER_SITES= http://www.aleksey.com/xmlsec/download/ \ ftp://ftp.aleksey.com/pub/xmlsec/releases/ \ @@ -81,6 +82,7 @@ post-patch: @${REINPLACE_CMD} \ -e 's,total_time.*/ 1000),total_time*1000/CLOCKS_PER_SEC,' \ ${WRKSRC}/apps/xmlsec.c + @${REINPLACE_CMD} -e 's,\\\\\\,\\,g' ${WRKSRC}/*.pc.in .if defined(WITH_GNUTLS) # Don't rely on broken autodetection @${REINPLACE_CMD} -e '/^GNUTLS_FOUND/s/no/yes/' \ |