Mercurial > hg > octave-thorsten
changeset 15242:b7f9d2c99a06
fix library name for octave_config
* octave_config_LDADD: Link with
$(top_builddir)/libinterp/corefcn/libcorefcn.la, not
corefcn/libcorefcn.la.
author | John W. Eaton <jwe@octave.org> |
---|---|
date | Mon, 27 Aug 2012 18:06:48 -0400 (2012-08-27) |
parents | 2cdace1ba287 |
children | b241e69306a5 |
files | src/Makefile.am |
diffstat | 1 files changed, 3 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/src/Makefile.am +++ b/src/Makefile.am @@ -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 \