From maintainers-request at octave dot org Fri Nov 11 20:31:52 2005 Subject: Re: Octave 2.9.4 available for ftp From: "John W. Eaton" To: "Dmitri A. Sergatskov" Cc: octave maintainers mailing list Date: Fri, 11 Nov 2005 21:31:23 -0500 On 11-Nov-2005, Dmitri A. Sergatskov wrote: | John W. Eaton wrote: | > Octave 2.9.4 is now available for ftp from ftp.octave.org in the | > directory /pub/octave/bleeding-edge: | > | | Make install does not seem to install many development header files (version.h, oct.h, ...), Please try the following patch. Thanks, jwe src/ChangeLog: 2005-11-11 John W. Eaton * Makefile.in (install-oct): Fix thinko in previous change. Index: src/Makefile.in =================================================================== RCS file: /cvs/octave/src/Makefile.in,v retrieving revision 1.389 diff -u -r1.389 Makefile.in --- src/Makefile.in 11 Nov 2005 17:45:51 -0000 1.389 +++ src/Makefile.in 12 Nov 2005 02:29:32 -0000 at @ -398,12 +398,12 @@ install-oct: $(top_srcdir)/mkinstalldirs $(DESTDIR)$(octfiledir) + $(srcdir)/mk-pkg-add --prefix $(octfiledir) $(DLD_DEF_FILES) > $(DESTDIR)$(octfiledir)/PKG_ADD if [ -n "$(OCT_FILES)" ]; then \ xfiles="$(OCT_FILES)"; \ for f in $$xfiles; do \ $(INSTALL_PROGRAM) $$f $(DESTDIR)$(octfiledir)/$$f; \ done; \ - $(srcdir)/mk-pkg-add --prefix $(octfiledir) $(DLD_DEF_FILES) > $(DESTDIR)$(octfiledir)/PKG_ADD fi .PHONY: install-oct