- Add necessary automake conditionals to install-exec-local

rule, as it seems to be executed even though lib_LTLIBRARIES
  is empty in some cases.


git-svn-id: https://www.opensc-project.org/svnp/opensc/trunk@1556 c6295689-39f2-0310-b995-f0e70906c6a9
This commit is contained in:
aet 2003-10-21 12:50:04 +00:00
parent 7d34d6b6ee
commit 4615d5eb87
2 changed files with 6 additions and 0 deletions

View File

@ -26,4 +26,8 @@ noinst_HEADERS = \
opensc-crypto.h opensc-support.h signer.h
install-exec-local: install-libLTLIBRARIES
if HAVE_SSL
if HAVE_ASSUAN
-$(LN_S) -f $(libdir)/opensc-signer.so $(DESTDIR)$(plugindir)/
endif
endif

View File

@ -32,9 +32,11 @@ engine_pkcs11_la_LIBADD = @LIBCRYPTOA@ ../pkcs11/libpkcs11.la
engine_pkcs11_la_LDFLAGS = @OPENSSL_LDFLAGS@ -module -avoid-version
install-exec-local: install-libLTLIBRARIES
if HAVE_ENGINE
if HAVE_BUNDLES
-${top_srcdir}/macos/libtool-bundle $(DESTDIR)$(libdir)/engine_opensc.so \
$(DESTDIR)$(bundledir)/
-${top_srcdir}/macos/libtool-bundle $(DESTDIR)$(libdir)/engine_pkcs11.so \
$(DESTDIR)$(bundledir)/
endif
endif