diff options
author | Lukas Slebodnik <lslebodn@redhat.com> | 2014-04-04 13:29:39 +0200 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2014-04-04 23:50:25 +0200 |
commit | e1df75b5a965829db0c1f76673dcc824447b3ae7 (patch) | |
tree | 5687b257f2cd3c017af01f99713e729bbab1b1ee /lib/talloc | |
parent | a83c5240b1332d5a97dd21ecd3666a9c2ff38643 (diff) | |
download | samba-e1df75b5a965829db0c1f76673dcc824447b3ae7.tar.gz samba-e1df75b5a965829db0c1f76673dcc824447b3ae7.tar.xz samba-e1df75b5a965829db0c1f76673dcc824447b3ae7.zip |
talloc: Update flags in pytalloc-util 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 <lslebodn@redhat.com>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
Reviewed-by: Stefan Metzmacher <metze@samba.org>
Autobuild-User(master): Andrew Bartlett <abartlet@samba.org>
Autobuild-Date(master): Fri Apr 4 23:50:25 CEST 2014 on sn-devel-104
Diffstat (limited to 'lib/talloc')
-rw-r--r-- | lib/talloc/pytalloc-util.pc.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/talloc/pytalloc-util.pc.in b/lib/talloc/pytalloc-util.pc.in index bc704b49294..b7426bb1124 100644 --- a/lib/talloc/pytalloc-util.pc.in +++ b/lib/talloc/pytalloc-util.pc.in @@ -6,6 +6,6 @@ includedir=@includedir@ Name: pytalloc-util Description: Utility functions for using talloc objects with Python Version: @TALLOC_VERSION@ -Libs: -L${libdir} -lpytalloc-util -Cflags: @LIB_RPATH@ -I${includedir} +Libs: @LIB_RPATH@ -L${libdir} -lpytalloc-util +Cflags: -I${includedir} URL: http://talloc.samba.org/ |