diff options
author | adam <adam@pkgsrc.org> | 2005-01-13 15:41:53 +0000 |
---|---|---|
committer | adam <adam@pkgsrc.org> | 2005-01-13 15:41:53 +0000 |
commit | 5739500a9bdd070d39c98ace31fd79a6f7c52a62 (patch) | |
tree | 85c4c5f01ebb1f05432f846cb94583d97b212cd1 /math/octave-current/patches | |
parent | c5ded126818e6896df4ac930c393936e2ebaf027 (diff) | |
download | pkgsrc-5739500a9bdd070d39c98ace31fd79a6f7c52a62.tar.gz |
Fixed installation problem - now all the modules should be installed correctly, and buildlinked against fftw (not fftw2)
Diffstat (limited to 'math/octave-current/patches')
-rw-r--r-- | math/octave-current/patches/patch-ag | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/math/octave-current/patches/patch-ag b/math/octave-current/patches/patch-ag index 06123f2d669..5c1f5b0cff7 100644 --- a/math/octave-current/patches/patch-ag +++ b/math/octave-current/patches/patch-ag @@ -1,6 +1,6 @@ -$NetBSD: patch-ag,v 1.10 2004/09/23 13:03:41 adam Exp $ +$NetBSD: patch-ag,v 1.11 2005/01/13 15:41:54 adam Exp $ ---- src/Makefile.in.orig 2004-09-02 03:48:47.000000000 +0000 +--- src/Makefile.in.orig 2004-11-12 05:34:58.000000000 +0000 +++ src/Makefile.in @@ -32,10 +32,10 @@ CXXFLAGS_NO_PT_FLAGS = $(filter-out $(PT ifeq ($(ENABLE_DYNAMIC_LINKING), true) @@ -52,7 +52,15 @@ $NetBSD: patch-ag,v 1.10 2004/09/23 13:03:41 adam Exp $ $(INSTALL_PROGRAM) octave$(EXEEXT) $(DESTDIR)$(bindir)/octave-$(version)$(EXEEXT) $(LN_S) octave-$(version)$(EXEEXT) $(DESTDIR)$(bindir)/octave$(EXEEXT) .PHONY: install-bin -@@ -387,9 +390,8 @@ install-lib: +@@ -377,6 +380,7 @@ install-oct: + $(top_srcdir)/mkinstalldirs $(DESTDIR)$(octfiledir); \ + xfiles="$(OCT_FILES)"; \ + for f in $$xfiles; do \ ++ ${LIBTOOL} --mode=install \ + $(INSTALL_PROGRAM) $$f $(DESTDIR)$(octfiledir)/$$f; \ + done; \ + $(srcdir)/mk-oct-links $(DESTDIR)$(octfiledir) $(DLD_DEF_FILES); \ +@@ -387,9 +391,8 @@ install-lib: $(top_srcdir)/mkinstalldirs $(DESTDIR)$(octlibdir) if $(STATIC_LIBS); then \ rm -f $(DESTDIR)$(octlibdir)/liboctinterp.$(LIBEXT); \ |