]> git.donarmstrong.com Git - lilypond.git/commitdiff
Remove unneeded --parallel options from debhelper calls
authorDr. Tobias Quathamer <toddy@debian.org>
Fri, 6 Oct 2017 06:45:50 +0000 (08:45 +0200)
committerDr. Tobias Quathamer <toddy@debian.org>
Fri, 6 Oct 2017 06:46:16 +0000 (08:46 +0200)
debian/rules

index 7b32fc2e9ae044951bac86150e23849902444680..0139b9d0183f6f901a1198e230ca50fc06b42c7f 100755 (executable)
@@ -87,8 +87,11 @@ export LILYPOND_VERSION := $(MAJOR_VERSION).$(MINOR_VERSION).$(PATCH_LEVEL)
                -e 's!@DEB_HOST_MULTIARCH@!$(DEB_HOST_MULTIARCH)!g' \
                -e 's!@LILYPOND_VERSION@!$(LILYPOND_VERSION)!g'
 
+# Do not use debhelper's autoreconf, the build currently
+# fails with this option and we take care of that
+# ourselves anyway.
 %:
-       dh $@ --parallel --with autotools-dev --with python2 --with quilt
+       dh $@ --without autoreconf --with python2 --with quilt
 
 ## we need to nuke the parser files, because if there is a mismatch
 ## between upstreams bison and our bison, the build will fail epically
@@ -104,7 +107,7 @@ override_dh_auto_configure:
                dh_auto_configure -- --disable-checking --enable-debugging $(config_opt)
 
 override_dh_auto_build-indep:
-       dh_auto_build -i -O--parallel
+       dh_auto_build -i
        $(MAKE) doc $(DOC_OPTIONS)
 
 ## Unfortunately, lilypond is kind of broken, and installs the wrong
@@ -139,7 +142,7 @@ override_dh_auto_clean:
        dh_auto_clean --no-parallel
 
 override_dh_install-arch:
-       dh_install -a -O--parallel --list-missing
+       dh_install -a --list-missing
 
 ## we need to install only the png, jpg, css, ly and english html
 ## files into the doc-html package, and only the english pdfs into the
@@ -161,7 +164,7 @@ override_dh_install-indep:
        find $(CURDIR)/debian/tmp/ -type f \
                -regex '.*usr/share/doc/lilypond/.*/[^\.]+.preview.pdf' \
                -printf '%P\n' >> $(CURDIR)/debian/lilypond-doc-pdf.install
-       dh_install -i -O--parallel --list-missing
+       dh_install -i --list-missing
 
 override_dh_python2:
        dh_python2 --verbose
@@ -180,7 +183,7 @@ override_dh_installdocs:
 
 override_dh_shlibdeps-arch:
        $(eval unexport LD_LIBRARY_PATH)
-       dh_shlibdeps -a -O--parallel -lusr/lib/$(DEB_HOST_MULTIARCH)/lilypond/$(LILYPOND_VERSION)/guile
+       dh_shlibdeps -a -lusr/lib/$(DEB_HOST_MULTIARCH)/lilypond/$(LILYPOND_VERSION)/guile
 
 # Skip tests for architecture-dependent-only build because
 # the test would fail without built documentation.