blob: 86133612ed7270f4073fe95a8050321d275f8e2f (
plain) (
tree)
|
|
From 452ba68cde25423d13ebb36f0a54559f07aa53a2 Mon Sep 17 00:00:00 2001
From: Igor Gnatenko <ignatenko@redhat.com>
Date: Tue, 7 Feb 2017 16:37:47 +0100
Subject: [PATCH] pkgconfig: do not quote Libs
It doesn't make sense at all.
---
libgit2.pc.in | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/libgit2.pc.in b/libgit2.pc.in
index 329a560a7..880266a30 100644
--- a/libgit2.pc.in
+++ b/libgit2.pc.in
@@ -6,7 +6,7 @@ Name: libgit2
Description: The git library, take 2
Version: @LIBGIT2_VERSION_STRING@
-Libs: -L"${libdir}" -lgit2
+Libs: -L${libdir} -lgit2
Libs.private: @LIBGIT2_PC_LIBS@
Requires.private: @LIBGIT2_PC_REQUIRES@
--
2.11.0
|