# HG changeset patch # User John W. Eaton # Date 1346105208 14400 # Node ID b7f9d2c99a06e581e94394f1e243b9544740ba98 # Parent 2cdace1ba287aa6a7419a6bd9b2b766afe1e3aba fix library name for octave_config * octave_config_LDADD: Link with $(top_builddir)/libinterp/corefcn/libcorefcn.la, not corefcn/libcorefcn.la. diff -r 2cdace1ba287 -r b7f9d2c99a06 src/Makefile.am --- a/src/Makefile.am Sun Aug 26 22:17:43 2012 -0700 +++ b/src/Makefile.am Mon Aug 27 18:06:48 2012 -0400 @@ -38,9 +38,9 @@ octave_config_SOURCES = nodist_octave_config_SOURCES = octave-config.cc octave_config_LDADD = \ - corefcn/libcorefcn.la \ - $(top_builddir)/libgnu/libgnu.la \ - $(LIBS) + $(top_builddir)/libinterp/corefcn/libcorefcn.la \ + $(top_builddir)/libgnu/libgnu.la \ + $(LIBS) BUILT_SOURCES_EXTRA = \ mkoctfile.cc \