From 52c35a313763308ead5d73e3a0cbd1361114ce3d Mon Sep 17 00:00:00 2001 From: Tor Lillqvist Date: Thu, 22 Oct 2009 02:03:07 +0300 Subject: [PATCH] Actually do install the .def file on Windows --- dbus/Makefile.am | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/dbus/Makefile.am b/dbus/Makefile.am index 4346de73b..db90b87eb 100644 --- a/dbus/Makefile.am +++ b/dbus/Makefile.am @@ -26,6 +26,7 @@ no_undefined = -no-undefined export_symbols = -export-symbols $(srcdir)/dbus-1.def install-def-file: + test -z "$(libdir)" || $(MKDIR_P) "$(DESTDIR)$(libdir)" $(INSTALL) dbus-1.def $(DESTDIR)$(libdir)/dbus-1.def uninstall-def-file: @@ -233,7 +234,7 @@ libdbus_convenience_la_SOURCES= \ BUILT_SOURCES=$(dbusarchinclude_HEADERS) -EXTRA_DIST=dbus-arch-deps.h.in +EXTRA_DIST=dbus-arch-deps.h.in dbus-1.def ## this library is the same as libdbus, but exports all the symbols ## and is only used for static linking within the dbus package. @@ -264,6 +265,10 @@ dbus_test_SOURCES= \ dbus_test_LDADD=libdbus-convenience.la $(DBUS_TEST_LIBS) dbus_test_LDFLAGS=@R_DYNAMIC_LDFLAG@ +install-data-local: install-def-file + +uninstall-local: uninstall-def-file + ## mop up the gcov files clean-local: /bin/rm *.bb *.bbg *.da *.gcov .libs/*.da .libs/*.bbg || true -- 2.47.3