Skip to content
This repository was archived by the owner on Feb 1, 2023. It is now read-only.

Commit 2e5d421

Browse files
author
Release Manager
committed
Trac #33243: Parallel docbuild broken with GNU make 4
This affects all current Linux distros. Broken by #33130. (It works fine on GNU make 3, the version provided by Xcode on macOS.) Reported in https://groups.google.com/g/sage- devel/c/jxIjXoXL5FU/m/nu8xp06jBwAJ URL: https://trac.sagemath.org/33243 Reported by: mkoeppe Ticket author(s): Matthias Koeppe Reviewer(s): Markus Wageringel
2 parents 3320e6e + 22feeb5 commit 2e5d421

File tree

4 files changed

+36
-5
lines changed

4 files changed

+36
-5
lines changed

.github/workflows/ticket.yaml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
# CI Test For Individual Tickets
2+
3+
name: Ticket CI
4+
5+
on:
6+
push:
7+
branches:
8+
# Once set to positive review, the branch from the trac ticket
9+
# number 12345 will be copied to ticket/12345
10+
- 'ticket/**'
11+
12+
13+
jobs:
14+
ticket_ci:
15+
16+
# TODO: this action is only a placeholder, github actions needs
17+
# this in the master branch to enable it
18+
19+
name: Ticket CI
20+
runs-on: ubuntu-latest
21+
steps:
22+
- name: Checkout
23+
uses: actions/checkout@v2
24+
- name: Set up Python
25+
uses: actions/setup-python@v2
26+
with:
27+
python-version: 3.8
28+
- name: Install pycodestyle
29+
run: pip install tox pycodestyle
30+
- name: Lint using pycodestyle
31+
run: tox -e pycodestyle-minimal

build/make/Makefile.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ AM_V_at =
184184
endif
185185

186186
# Trac #33125: Handle make options -n, -t, -q
187-
ifeq ($(foreach flag, n t q, $(findstring $(flag),$(filter-out --%,$(MAKEFLAGS)))),)
187+
ifeq ($(strip $(foreach flag,n t q,$(findstring $(flag),$(filter-out --%,$(MAKEFLAGS))))),)
188188
PLUS = +
189189
else
190190
PLUS =

build/pkgs/configure/checksums.ini

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
tarball=configure-VERSION.tar.gz
2-
sha1=61c83da0394100f82ff51a264c8defd34d2fee84
3-
md5=a3e9266838a69d32fb80ead2c3b2ffc7
4-
cksum=3510162262
2+
sha1=8209739ce4ad39a2db92d869bb409249937ea542
3+
md5=b17ec372ea4b3cbcd467caa1986c1424
4+
cksum=70978832
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
10b4d19e542426bac8e49aca532af32f0bf1eace
1+
86ce7ada38fd23f805c2571cdafa21d1240b3075

0 commit comments

Comments
 (0)