use /etc instead of automake macros for ld.so.conf, since this file really only makes sense there.
Signed-off-by: Klaus Heinrich Kiwi <[email protected]> --- usr/lib/Makefile.am | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/usr/lib/Makefile.am b/usr/lib/Makefile.am index 5b0761f..ac6a6b3 100644 --- a/usr/lib/Makefile.am +++ b/usr/lib/Makefile.am @@ -1,10 +1,10 @@ SUBDIRS = pkcs11 install-data-hook: - $(MKDIR_P) $(DESTDIR)$(sysconfdir)/ld.so.conf.d + $(MKDIR_P) $(DESTDIR)/etc/ld.so.conf.d echo "$(DESTDIR)$(libdir)/opencryptoki" >\ - $(DESTDIR)$(sysconfdir)/ld.so.conf.d/opencryptoki-$(target_cpu).conf + $(DESTDIR)/etc/ld.so.conf.d/opencryptoki-$(host_cpu).conf echo "$(DESTDIR)$(libdir)/opencryptoki/stdll" >>\ - $(DESTDIR)$(sysconfdir)/ld.so.conf.d/opencryptoki-$(target_cpu).conf + $(DESTDIR)/etc/ld.so.conf.d/opencryptoki-$(host_cpu).conf echo "**** Remember you must run ldconfig before using the above settings ****" -- 1.6.6.1 ------------------------------------------------------------------------------ _______________________________________________ Opencryptoki-tech mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/opencryptoki-tech
