Skip to content

Commit 28d08a3

Browse files
authored
Enhance Makefile and .travis.yml from various feedbacks. (#393)
1 parent c6d8362 commit 28d08a3

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@ install:
77
- pip install pospell
88
- pospell --version
99
script:
10-
- pospell -p dict -l fr **/*.po
10+
- pospell -p dict -l fr_FR **/*.po
1111
- make CPYTHON_CLONE=/tmp/cpython/ COMMIT=d4ed8809dd

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,13 @@ PYTHON := $(shell which python3)
2121
MODE := autobuild-dev-html
2222
BRANCH = 3.7
2323
COMMIT =
24-
JOBS = 4
24+
JOBS = auto
2525

2626

2727
.PHONY: all
2828
all: $(SPHINX_CONF) $(VENV)/bin/activate
2929
ifneq "$(shell cd $(CPYTHON_CLONE) 2>/dev/null && git describe --contains --all HEAD)" "$(BRANCH)"
30-
$(warning "Your ../cpython checkout is on the wrong branch, got $(shell cd $(CPYTHON_CLONE) 2>/dev/null && git describe --contains --all HEAD) expected $(BRANCH)")
30+
$(warning "Your ../cpython checkout may be on the wrong branch, got $(shell cd $(CPYTHON_CLONE) 2>/dev/null && git describe --contains --all HEAD) expected $(BRANCH)")
3131
endif
3232
mkdir -p $(CPYTHON_CLONE)/locales/$(LANGUAGE)/
3333
ln -nfs $(shell $(PYTHON) -c 'import os; print(os.path.realpath("."))') $(CPYTHON_CLONE)/locales/$(LANGUAGE)/LC_MESSAGES

0 commit comments

Comments
 (0)