summaryrefslogtreecommitdiff
path: root/libssh2-1.6.0-pkgconfig.patch
blob: 6cd69fc4886fe4755fab5d03ec0183862067987a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
Remove LDFLAGS from pkg-config --libs output (#1279966)

--- libssh2.pc.in
+++ libssh2.pc.in
@@ -12,6 +12,6 @@ URL: http://www.libssh2.org/
 Description: Library for SSH-based communication
 Version: @LIBSSH2VER@
 Requires.private: @LIBSREQUIRED@
-Libs: -L${libdir} -lssh2 @LDFLAGS@ @LIBS@
+Libs: -L${libdir} -lssh2 @LIBS@
 Libs.private: @LIBS@
 Cflags: -I${includedir}
bgstack15