Skip to content

Commit d27b19a

Browse files
author
Release Manager
committed
gh-35737: build/pkgs/maxima: Fix parallel build <!-- Please provide a concise, informative and self-explanatory title. --> <!-- Don't put issue numbers in the title. Put it in the Description below. --> <!-- For example, instead of "Fixes #12345", use "Add a new method to multiply two integers" --> ### 📚 Description <!-- Describe your changes here in detail. --> Fix a mistake in a maxima Makefile. <!-- Why is this change required? What problem does it solve? --> maxima build fails non-deterministically in parallel builds. <!-- If this PR resolves an open issue, please link to it here. For example "Fixes #12345". --> - Fixes #35619 (comment) <!-- If your change requires a documentation PR, please link it appropriately. --> ### 📝 Checklist <!-- Put an `x` in all the boxes that apply. It should be `[x]` not `[x ]`. --> - [x] The title is concise, informative, and self-explanatory. - [x] The description explains in detail what this PR is about. - [x] I have linked a relevant issue or discussion. - [ ] I have created tests covering the changes. - [ ] I have updated the documentation accordingly. ### ⌛ Dependencies <!-- List all open PRs that this PR logically depends on - #12345: short description why this is a dependency - #34567: ... --> <!-- If you're unsure about any of these, don't hesitate to ask. We're here to help! --> URL: #35737 Reported by: Matthias Köppe Reviewer(s): Dima Pasechnik
2 parents 202ccd7 + 29fce00 commit d27b19a

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

build/pkgs/maxima/spkg-install.in

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,10 @@ cd src/
2020
# Use newer version of config.guess and config.sub (see Trac #19734)
2121
cp "$SAGE_ROOT"/config/config.* .
2222

23+
# Patch out bad 'multiple targets' rule
24+
# https://github.com/sagemath/sage/pull/35619#issuecomment-1567351409
25+
sed -i.bak 's/^maxima_singlepage.html //' doc/info/Makefile.in
26+
2327
# Note that maxima configure checks for git and, if it finds it, uses
2428
# versions information from the repo. See #15529. We disable this with
2529
# git_found=false

0 commit comments

Comments
 (0)