Skip to content
GitLab
Explore
Sign in
Register
Commits on Source (2)
Always evaluate WAF_NO_PARALLEL to ensure correct value (Closes: #941467)
· d6916446
Mathieu Parent
authored
Oct 02, 2019
Otherwise, WAF_NO_PARALLEL is evaluated later, when WAF already has -j options
d6916446
Release 2:4.11.0+dfsg-7
· 478603e6
Mathieu Parent
authored
Oct 02, 2019
478603e6
Show whitespace changes
Inline
Side-by-side
debian/changelog
View file @
478603e6
samba (2:4.11.0+dfsg-7) unstable; urgency=medium
* Always evaluate WAF_NO_PARALLEL to ensure correct value (Closes: #941467)
* This version is built with talloc from sid (Closes: #940963)
-- Mathieu Parent <sathieu@debian.org> Wed, 02 Oct 2019 20:45:24 +0200
samba (2:4.11.0+dfsg-6) unstable; urgency=medium
* Do not run waf configure in parallel. Fix FTBFS on arm (Closes: #941467)
...
...
debian/rules
View file @
478603e6
...
...
@@ -24,8 +24,8 @@ LDB_DEPENDS = "libldb2 (<< $(LDB_EPOCH):$(LDB_NEXT_VERSION)~), libldb2 (>> $(LDB
export PYSHORT=python3
export PYTHON=$(shell which $(PYSHORT))
export PYTHON_CONFIG="$(PYTHON)-config"
WAF = $(PYTHON) ./buildtools/bin/waf -v
WAF_NO_PARALLEL = $(WAF)
WAF
:
= $(PYTHON) ./buildtools/bin/waf -v
WAF_NO_PARALLEL
:
= $(WAF)
# wrapper around cups-config, to work around #726726
export PATH:=$(CURDIR)/debian/bin:$(PATH)
...
...