commit: 0ff312a62959b56777f3557cd7c6b9b1b36d7cff Author: Michael Orlitzky <mjo <AT> gentoo <DOT> org> AuthorDate: Sun Sep 11 12:33:36 2022 +0000 Commit: Michael Orlitzky <mjo <AT> gentoo <DOT> org> CommitDate: Sun Sep 11 12:42:04 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0ff312a6
sci-mathematics/octave: remove slibtool workaround from v7.2.0. The --enable-link-all-dependencies flag is apparently no longer needed with octave-7.2.0. Removing it from the ./configure invocation prevents mkoctfile from using the -loctave and -loctinterp flags by default. With octave-7.2.0 they should be harmless anyway, but it's nice to clean things up a bit when we can get away with it. Bug: https://bugs.gentoo.org/776583 Bug: https://bugs.gentoo.org/858554 Signed-off-by: Michael Orlitzky <mjo <AT> gentoo.org> .../octave/{octave-7.2.0.ebuild => octave-7.2.0-r1.ebuild} | 5 ----- 1 file changed, 5 deletions(-) diff --git a/sci-mathematics/octave/octave-7.2.0.ebuild b/sci-mathematics/octave/octave-7.2.0-r1.ebuild similarity index 95% rename from sci-mathematics/octave/octave-7.2.0.ebuild rename to sci-mathematics/octave/octave-7.2.0-r1.ebuild index f6b2f628e13d..74f1205d583c 100644 --- a/sci-mathematics/octave/octave-7.2.0.ebuild +++ b/sci-mathematics/octave/octave-7.2.0-r1.ebuild @@ -139,16 +139,11 @@ src_configure() { # --with-sundials_ida (no-op) with USE="sundials" # --without-sundials_ida (disables it) with USE="-sundials" # - # The --enable-link-all-dependencies flag is needed because - # otherwise, the build system appends --no-undefined to LDFLAGS and - # then proceeds to undefine things. GNU libtool ignores this, but - # slibtool (for example) does not (bug #776583). econf \ --localstatedir="${EPREFIX}/var/state/octave" \ --with-blas="$($(tc-getPKG_CONFIG) --libs blas)" \ --with-lapack="$($(tc-getPKG_CONFIG) --libs lapack)" \ --disable-64 \ - --enable-link-all-dependencies \ --enable-shared \ --with-z \ --with-bz2 \