1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41
|
Description: Install the Octave libraries publically in /usr/lib/
Thanks to John Eaton for helping with this.
.
The patch is currently not needed upstream, but forwarding it might make sense
in the future.
Forwarded: not-needed
Author: Thomas Weber <tweber@debian.org>
Reviewed-by: Rafael Laboissière <rafael@debian.org>
Last-Update: 2016-11-20
--- a/Makefile.am
+++ b/Makefile.am
@@ -191,6 +191,7 @@ OCTAVE_CROSS_TOOLS =
OCTAVE_INTERPRETER_TARGETS =
octlib_LTLIBRARIES =
+lib_LTLIBRARIES =
noinst_LTLIBRARIES =
octinclude_HEADERS =
--- a/liboctave/module.mk
+++ b/liboctave/module.mk
@@ -23,7 +23,7 @@ GEN_CONFIG_SHELL += \
-I$(srcdir)/%reldir%/util \
-I$(srcdir)/%reldir%/wrappers
-octlib_LTLIBRARIES += %reldir%/liboctave.la
+lib_LTLIBRARIES += %reldir%/liboctave.la
%canon_reldir%_pkgconfig_DATA = %reldir%/octave.pc
--- a/libinterp/module.mk
+++ b/libinterp/module.mk
@@ -24,7 +24,7 @@ LIBINTERP_DEFUN_FILES =
$(HDF5_CPPFLAGS) \
$(MAGICK_CPPFLAGS)
-octlib_LTLIBRARIES += %reldir%/liboctinterp.la
+lib_LTLIBRARIES += %reldir%/liboctinterp.la
%canon_reldir%_pkgconfig_DATA = %reldir%/octinterp.pc
|