summaryrefslogtreecommitdiff
path: root/libssh2/libssh2-1.7.0-pkgconfig.patch
diff options
context:
space:
mode:
authorB Stack <bgstack15@gmail.com>2019-09-18 12:37:11 +0000
committerB Stack <bgstack15@gmail.com>2019-09-18 12:37:11 +0000
commitbab4e46df0ab08070ac03aa057bd63ee7d744a90 (patch)
tree8abbed509506c4ca87de844ff57ffcd3988bdf55 /libssh2/libssh2-1.7.0-pkgconfig.patch
parentMerge branch 'plymouth-bump' into 'master' (diff)
parentadd curl (diff)
downloadstackrpms-bab4e46df0ab08070ac03aa057bd63ee7d744a90.tar.gz
stackrpms-bab4e46df0ab08070ac03aa057bd63ee7d744a90.tar.bz2
stackrpms-bab4e46df0ab08070ac03aa057bd63ee7d744a90.zip
Merge branch 'libssh2-bump' into 'master'
Add freefilesync build/run dependencies See merge request bgstack15/stackrpms!88
Diffstat (limited to 'libssh2/libssh2-1.7.0-pkgconfig.patch')
-rw-r--r--libssh2/libssh2-1.7.0-pkgconfig.patch13
1 files changed, 13 insertions, 0 deletions
diff --git a/libssh2/libssh2-1.7.0-pkgconfig.patch b/libssh2/libssh2-1.7.0-pkgconfig.patch
new file mode 100644
index 0000000..838c234
--- /dev/null
+++ b/libssh2/libssh2-1.7.0-pkgconfig.patch
@@ -0,0 +1,13 @@
+Remove libdir from pkg-config --libs output, as it's a standard place
+on Fedora
+
+--- 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 @LIBS@
++Libs: -lssh2 @LIBS@
+ Libs.private: @LIBS@
+ Cflags: -I${includedir}
bgstack15