Changes between Initial Version and Version 1 of Ticket #52486, comment 3


Ignore:
Timestamp:
Oct 3, 2016, 5:42:16 AM (8 years ago)
Author:
lbschenkel (Leonardo Brondani Schenkel)
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #52486, comment 3

    initial v1  
    11I compiled from source and it does not build the separate `p11-kit-proxy.so` either; I checked the Makefile and the proxy is supposed to be a link to the lib. I verified on Ubuntu and I confirmed that it is a symlink there. I think there's a bug in the upstream Makefile:
    2 ```
     2{{{
    33install-exec-hook:
    44        $(LN_S) -f `readlink $(DESTDIR)$(libdir)/libp11-kit.so` $(DESTDIR)$(libdir)/p11-kit-proxy.so
    5 ```
     5}}}
    66It assumes that the library will end in `.so` (but on Mac it'll end in `.dylib`), so the first path resolves to empty and the destination path becomes the source path in the command and the symlink is created in the working directory instead and never gets installed.