Commit 1c9d22be authored by Ondrej Sury's avatar Ondrej Sury
Browse files

Honor parallel settings in ninja

parent 1e26c7dc
......@@ -62,7 +62,7 @@ override_dh_auto_clean: generated-files
rm -f $(GENERATED_FILES)
override_dh_auto_build:
cd $(BUILDDIR) && ninja
cd $(BUILDDIR) && ninja -j $(NUMJOBS)
override_dh_auto_configure:
mkdir -p $(BUILDDIR) && cd $(BUILDDIR) && \
......@@ -96,7 +96,7 @@ ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS)))
endif
override_dh_auto_install: generated-files
cd $(BUILDDIR) && DESTDIR=$(CURDIR)/debian/tmp ninja install
cd $(BUILDDIR) && DESTDIR=$(CURDIR)/debian/tmp ninja -j $(NUMJOBS) install
# Delete runnable files we don't want to have in the test data package.
# This avoids triggering multiple Lintian errors.
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment