[libvirt] [PATCH 1/3] Don't include @LIBS@ in libvirt.pc.in file

Daniel P. Berrange berrange at redhat.com
Fri Jun 20 16:51:11 UTC 2014


The libvirt.pc file we install is ending up polluted with a
load of compiler flags that should be private to the libvirt
build. eg

Libs: -L${libdir} -lvirt -ldl -O2 -g -pipe -Wall \
      -Wp,-D_FORTIFY_SOURCE=2 -fexceptions \
      -fstack-protector-strong --param=ssp-buffer-size=4 \
      -grecord-gcc-switches  -m64 -mtune=generic

this is caused by including @LIBS@ in the Libs: line of the
pkgconfig.pc.in file.

Signed-off-by: Daniel P. Berrange <berrange at redhat.com>
---
 libvirt.pc.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libvirt.pc.in b/libvirt.pc.in
index d456a88..58645d9 100644
--- a/libvirt.pc.in
+++ b/libvirt.pc.in
@@ -12,5 +12,5 @@ Name: libvirt
 Version: @VERSION@
 Description: libvirt library
 Requires:
-Libs: -L${libdir} -lvirt @LIBS@
+Libs: -L${libdir} -lvirt
 Cflags: -I${includedir}
-- 
1.9.3




More information about the libvir-list mailing list