diff options
author | Stef Walter <stefw@collabora.co.uk> | 2011-07-28 14:34:34 +0200 |
---|---|---|
committer | Stef Walter <stefw@collabora.co.uk> | 2011-07-28 14:34:34 +0200 |
commit | b1b63063e0da8518e89b485bc4d2827ba2e3fdcf (patch) | |
tree | ae3c5eb1d8992d5def55cf1648c5decfc5679c63 /p11-kit | |
parent | daec3faa85c4f463e3b13688f2bc2bbd1b2ae106 (diff) |
Make p11-kit-proxy.so link point to libp11-kit.so.0.0.0
* The link now points to the actual library, rather than to
another link.
https://bugzilla.redhat.com/show_bug.cgi?id=725905
Diffstat (limited to 'p11-kit')
-rw-r--r-- | p11-kit/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/p11-kit/Makefile.am b/p11-kit/Makefile.am index 90f0387..da06ebd 100644 --- a/p11-kit/Makefile.am +++ b/p11-kit/Makefile.am @@ -51,4 +51,4 @@ EXTRA_DIST = \ # Proxy module is actually same as library, so install a link install-exec-hook: - $(LN_S) libp11-kit.so $(DESTDIR)$(libdir)/p11-kit-proxy.so
\ No newline at end of file + $(LN_S) -f `readlink $(DESTDIR)$(libdir)/libp11-kit.so` $(DESTDIR)$(libdir)/p11-kit-proxy.so |