diff options
-rw-r--r-- | libwombat/ChangeLog | 4 | ||||
-rw-r--r-- | libwombat/Makefile.am | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/libwombat/ChangeLog b/libwombat/ChangeLog index f59e5b31e4..e57a63dc8e 100644 --- a/libwombat/ChangeLog +++ b/libwombat/ChangeLog @@ -1,3 +1,7 @@ +2001-06-23 Jason Leach <jleach@ximian.com> + + * Makefile.am: builddir != srcdir fixes. + 2001-06-22 Rodrigo Moya <rodrigo@ximian.com> * Makefile.am: added $(ORBIT_IDL) as a dependency to the IDL diff --git a/libwombat/Makefile.am b/libwombat/Makefile.am index 96962fca76..7219569145 100644 --- a/libwombat/Makefile.am +++ b/libwombat/Makefile.am @@ -4,7 +4,7 @@ INCLUDES = \ # CORBA stuff -IDLS = $(top_builddir)/wombat/wombat.idl +IDLS = $(top_srcdir)/wombat/wombat.idl IDL_GENERATED = \ wombat.h \ wombat-common.c \ @@ -15,7 +15,7 @@ $(IDLS): $(ORBIT_IDL) $(IDL_GENERATED): $(IDLS) $(ORBIT_IDL) -I $(srcdir) -I $(datadir)/idl `$(GNOME_CONFIG) --cflags idl` \ - $(top_builddir)/wombat/wombat.idl + $(top_srcdir)/wombat/wombat.idl # Wombat library lib_LTLIBRARIES = libwombat.la |