mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-24 10:39:08 +08:00
efa3860de7
* Add export list generation [skip actions] * Refresh exports using dumpbin * [nettle] Update to 3.8.1 [skip actions] * Disable testsuite and examples [skip actions] * Update exports for x64 [skip actions] * Update exports for x86 [skip actions] * Finish update * Fix installation of DLLs * Add feature to control tools * Fix CCAS --------- Co-authored-by: Monica <v-liumonica@microsoft.com>
27 lines
1.0 KiB
Diff
27 lines
1.0 KiB
Diff
diff --git a/Makefile.in b/Makefile.in
|
|
index 6e1585b..88c8b05 100644
|
|
--- a/Makefile.in
|
|
+++ b/Makefile.in
|
|
@@ -491,8 +491,8 @@ install-static: $(LIBTARGETS)
|
|
done
|
|
|
|
install-dll-nettle:
|
|
- $(MKDIR_P) $(DESTDIR)$(bindir)
|
|
- $(INSTALL_DATA) $(LIBNETTLE_FORLINK) $(DESTDIR)$(bindir)/$(LIBNETTLE_FORLINK)
|
|
+ $(MKDIR_P) $(DESTDIR)$(libdir)/../bin
|
|
+ $(INSTALL_DATA) $(LIBNETTLE_FORLINK) $(DESTDIR)$(libdir)/../bin/$(LIBNETTLE_FORLINK)
|
|
|
|
install-shared-nettle: $(LIBNETTLE_FORLINK) @IF_DLL@ install-dll-nettle
|
|
$(MKDIR_P) $(DESTDIR)$(libdir)
|
|
@@ -504,8 +504,8 @@ install-shared-nettle: $(LIBNETTLE_FORLINK) @IF_DLL@ install-dll-nettle
|
|
&& $(LN_S) $(LIBNETTLE_FILE) $(LIBNETTLE_FORLINK))
|
|
|
|
install-dll-hogweed:
|
|
- $(MKDIR_P) $(DESTDIR)$(bindir)
|
|
- $(INSTALL_DATA) $(LIBHOGWEED_FORLINK) $(DESTDIR)$(bindir)/$(LIBHOGWEED_FORLINK)
|
|
+ $(MKDIR_P) $(DESTDIR)$(libdir)/../bin
|
|
+ $(INSTALL_DATA) $(LIBHOGWEED_FORLINK) $(DESTDIR)$(libdir)/../bin/$(LIBHOGWEED_FORLINK)
|
|
|
|
install-shared-hogweed: $(LIBHOGWEED_FORLINK) @IF_DLL@ install-dll-hogweed
|
|
$(MKDIR_P) $(DESTDIR)$(libdir)
|