summaryrefslogtreecommitdiff
path: root/gmodule
diff options
context:
space:
mode:
authorTor Lillqvist <tml@novell.com>2008-09-08 20:38:40 +0000
committerTor Lillqvist <tml@src.gnome.org>2008-09-08 20:38:40 +0000
commita8539d10d49833425c1b76521ab765ffd66957f7 (patch)
treedba9646f7a3dfad59d29cf9acdc340491d576bad /gmodule
parentcc29f229ed50ab3ff5dc7fba67c5a7a5cbf7f052 (diff)
downloadglib-a8539d10d49833425c1b76521ab765ffd66957f7.tar.gz
Bug 551408 - gmodule.def generated to builddir, but required in srcdir
2008-09-08 Tor Lillqvist <tml@novell.com> Bug 551408 - gmodule.def generated to builddir, but required in srcdir * Makefile.am: Use gmodule.def from builddir, not srcdir. svn path=/trunk/; revision=7446
Diffstat (limited to 'gmodule')
-rw-r--r--gmodule/ChangeLog6
-rw-r--r--gmodule/Makefile.am6
2 files changed, 9 insertions, 3 deletions
diff --git a/gmodule/ChangeLog b/gmodule/ChangeLog
index 20f4d5ea0..8911b2913 100644
--- a/gmodule/ChangeLog
+++ b/gmodule/ChangeLog
@@ -1,3 +1,9 @@
+2008-09-08 Tor Lillqvist <tml@novell.com>
+
+ Bug 551408 - gmodule.def generated to builddir, but required in srcdir
+
+ * Makefile.am: Use gmodule.def from builddir, not srcdir.
+
2008-09-02 Matthias Clasen <mclasen@redhat.com>
* === Released 2.18.0 ===
diff --git a/gmodule/Makefile.am b/gmodule/Makefile.am
index ed36751ce..80a5605b6 100644
--- a/gmodule/Makefile.am
+++ b/gmodule/Makefile.am
@@ -63,14 +63,14 @@ no_undefined = -no-undefined
endif
if OS_WIN32_AND_DLL_COMPILATION
-export_symbols = -export-symbols $(srcdir)/gmodule.def
+export_symbols = -export-symbols gmodule.def
gmodule_def = gmodule.def
gmodule_win32_res = gmodule-win32-res.o
gmodule_win32_res_ldflag = -Wl,$(gmodule_win32_res)
install-def-file:
- $(INSTALL) $(srcdir)/gmodule.def $(DESTDIR)$(libdir)/gmodule-2.0.def
+ $(INSTALL) gmodule.def $(DESTDIR)$(libdir)/gmodule-2.0.def
uninstall-def-file:
-rm $(DESTDIR)$(libdir)/gmodule-2.0.def
@@ -94,7 +94,7 @@ gmodule-win32-res.o: gmodule.rc
$(WINDRES) gmodule.rc $@
gmodule-2.0.lib: libgmodule-2.0.la gmodule.def
- lib -machine:@LIB_EXE_MACHINE_FLAG@ -name:libgmodule-2.0-$(LT_CURRENT_MINUS_AGE).dll -def:$(srcdir)/gmodule.def -out:$@
+ lib -machine:@LIB_EXE_MACHINE_FLAG@ -name:libgmodule-2.0-$(LT_CURRENT_MINUS_AGE).dll -def:gmodule.def -out:$@
.PHONY: files release