From a83c5240b1332d5a97dd21ecd3666a9c2ff38643 Mon Sep 17 00:00:00 2001 From: Lukas Slebodnik Date: Fri, 4 Apr 2014 13:27:35 +0200 Subject: tevent: Update flags in tevent pkgconfig file After exapnding, @LIB_RPATH@ will be -Wl,-rpatch,/usr/local/lib if rpath is used on install. But "-Wl," will be passed to linker and should not be among CFLAGS. Other pkgconfig files have @LIB_RPATH@ in the right place. @see commit 735c1cd2da15167748e92ba6de48fdb5169db587 Signed-off-by: Lukas Slebodnik Reviewed-by: Andrew Bartlett Reviewed-by: Stefan Metzmacher --- lib/tevent/tevent.pc.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/tevent/tevent.pc.in b/lib/tevent/tevent.pc.in index 1091ff00f1..eb0e564f72 100644 --- a/lib/tevent/tevent.pc.in +++ b/lib/tevent/tevent.pc.in @@ -7,6 +7,6 @@ Name: tevent Description: An event system library Version: @PACKAGE_VERSION@ Requires: talloc -Libs: -L${libdir} -ltevent -Cflags: @LIB_RPATH@ -I${includedir} +Libs: @LIB_RPATH@ -L${libdir} -ltevent +Cflags: -I${includedir} URL: http://samba.org/ -- cgit