From 777f39c5160226be624530ccf2a178c11e48267e Mon Sep 17 00:00:00 2001 From: Julien Palard Date: Sun, 4 Nov 2018 21:55:30 +0100 Subject: [PATCH] Enhance Makefile and .travis.yml from various feedbacks. --- .travis.yml | 2 +- Makefile | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index 5850a6eae..b03539b68 100644 --- a/.travis.yml +++ b/.travis.yml @@ -7,5 +7,5 @@ install: - pip install pospell - pospell --version script: - - pospell -p dict -l fr **/*.po + - pospell -p dict -l fr_FR **/*.po - make CPYTHON_CLONE=/tmp/cpython/ COMMIT=d4ed8809dd diff --git a/Makefile b/Makefile index b8f24fa63..33aacd035 100644 --- a/Makefile +++ b/Makefile @@ -21,13 +21,13 @@ PYTHON := $(shell which python3) MODE := autobuild-dev-html BRANCH = 3.7 COMMIT = -JOBS = 4 +JOBS = auto .PHONY: all all: $(SPHINX_CONF) $(VENV)/bin/activate ifneq "$(shell cd $(CPYTHON_CLONE) 2>/dev/null && git describe --contains --all HEAD)" "$(BRANCH)" - $(warning "Your ../cpython checkout is on the wrong branch, got $(shell cd $(CPYTHON_CLONE) 2>/dev/null && git describe --contains --all HEAD) expected $(BRANCH)") + $(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)") endif mkdir -p $(CPYTHON_CLONE)/locales/$(LANGUAGE)/ ln -nfs $(shell $(PYTHON) -c 'import os; print(os.path.realpath("."))') $(CPYTHON_CLONE)/locales/$(LANGUAGE)/LC_MESSAGES