# HG changeset patch # User jwe # Date 988225295 0 # Node ID b370019103de2dbbf26502f6791d4887b48bfc66 # Parent f0ab8a324da7c000ec60def07ae63ca3f6869c65 [project @ 2001-04-25 19:01:33 by jwe] diff --git a/ChangeLog b/ChangeLog --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,13 @@ +2001-04-25 John W. Eaton + + * octMakefile.in (install, install-strip): Don't use mk-includedir-link + + * Makeconf.in (mk-includedir-link, mk-libdir-link): Delete definitions. + +2001-04-24 John W. Eaton + + * Makeconf.in (mk-libdir-link): Undo previous change + 2001-04-23 John W. Eaton * configure.in: Only check for libz if checking for HDF5 libraries. diff --git a/Makeconf.in b/Makeconf.in --- a/Makeconf.in +++ b/Makeconf.in @@ -451,38 +451,3 @@ -e "s;%OCTAVE_PREFIX%;\"${prefix}\";" $(top_srcdir)/move-if-change $@.tmp $@ endef - -# Make a relative symbolic link from $includedir/octave to -# $octincludedir/octave. - -# XXX FIXME XXX -- this assumes that $octincludedir is a subdirectory -# of $includedir. - -define mk-includedir-link -src=`echo $(octincludedir)/octave | sed 's|^$(includedir)/*||'`; \ -echo $$src; \ -if [ "$$src" = "octave" ]; then \ - true; \ -else \ - cd $(includedir); \ - rm -f octave; \ - $(LN_S) $$src octave; \ -fi -endef - -# Make a relative symbolic link from $libdir/octave to $octlibdir. - -# XXX FIXME XXX -- this assumes that $octlibdir is a subdirectory -# of $libdir. - -define mk-libdir-link -src=`echo $(octlibdir) | sed 's|^$(libdir)/*||'` ; \ -echo $$src ; \ -if [ "$$src" = "octave" ] ; then \ - true ; \ -else \ - cd $(libdir) ; \ - rm -f octave ; \ - $(LN_S) $$src octave ; \ -fi -endef diff --git a/libcruft/ChangeLog b/libcruft/ChangeLog --- a/libcruft/ChangeLog +++ b/libcruft/ChangeLog @@ -1,3 +1,7 @@ +2001-04-25 John W. Eaton + + * Makefile.in (install): Don't use mk-libdir-link. + 2001-04-19 John W. Eaton * misc/Makefile.in (CPICDEP): Remove pic/dostop.o from the list. diff --git a/libcruft/Makefile.in b/libcruft/Makefile.in --- a/libcruft/Makefile.in +++ b/libcruft/Makefile.in @@ -127,7 +127,6 @@ rm -f libcruft.$(SHLEXT); \ $(LN_S) libcruft.$(SHLEXT_VER) libcruft.$(SHLEXT); \ fi - $(mk-libdir-link) install-strip:: $(MAKE) INSTALL_PROGRAM="$(INSTALL_PROGRAM) -s" install diff --git a/liboctave/ChangeLog b/liboctave/ChangeLog --- a/liboctave/ChangeLog +++ b/liboctave/ChangeLog @@ -1,3 +1,8 @@ +2001-04-25 John W. Eaton + + * Makefile.in (install-lib): Don't use mk-libdir-link. + (install-inc): Don't use mk-includedir-link. + 2001-02-28 John W. Eaton * lo-cutils.c (octave_gethostname): New function. diff --git a/liboctave/Makefile.in b/liboctave/Makefile.in --- a/liboctave/Makefile.in +++ b/liboctave/Makefile.in @@ -202,7 +202,6 @@ rm -f liboctave.$(SHLEXT); \ $(LN_S) liboctave.$(SHLEXT_VER) liboctave.$(SHLEXT); \ fi - $(mk-libdir-link) .PHONY: install-lib install-inc: @@ -211,7 +210,6 @@ rm -f $(octincludedir)/octave/$$f; \ $(INSTALL_DATA) $(srcdir)/$$f $(octincludedir)/octave/$$f; \ done - $(mk-includedir-link) .PHONY: install-inc uninstall: diff --git a/octMakefile.in b/octMakefile.in --- a/octMakefile.in +++ b/octMakefile.in @@ -111,7 +111,6 @@ $(INSTALL_SCRIPT) mkoctfile $(bindir)/mkoctfile-$(version) cd $(bindir); $(LN_S) mkoctfile-$(version) mkoctfile $(INSTALL_DATA) config.h $(octincludedir)/octave/config.h - $(mk-includedir-link) maintainer-clean:: @echo "" diff --git a/src/ChangeLog b/src/ChangeLog --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,8 @@ +2001-04-25 John W. Eaton + + * Makefile.in (install-lib): Don't use mk-libdir-link. + (install-inc): Don't use mk-includedir-link. + 2001-04-19 John W. Eaton * parse.y (fold (tree_binary_expression *)): diff --git a/src/Makefile.in b/src/Makefile.in --- a/src/Makefile.in +++ b/src/Makefile.in @@ -358,7 +358,6 @@ rm -f liboctinterp.$(SHLEXT); \ $(LN_S) liboctinterp.$(SHLEXT_VER) liboctinterp.$(SHLEXT); \ fi - $(mk-libdir-link) .PHONY: install-lib install-inc: @@ -375,7 +374,6 @@ $(INSTALL_DATA) $(srcdir)/$$f $(octincludedir)/octave/$$f ; \ fi ; \ done - $(mk-includedir-link) .PHONY: install-inc uninstall: diff --git a/test/ChangeLog b/test/ChangeLog --- a/test/ChangeLog +++ b/test/ChangeLog @@ -1,6 +1,7 @@ 2001-04-24 Christoph Spiel * Makefile.in (check): Allow user to specify which .exp file to run. + * octave.test/try, octave.test/eval-catch: New directories and tests. 2000-06-07 Ben Sapp