Skip to content

Commit

Permalink
Added -j7 back to the rules file and kept it in the Makefile.
Browse files Browse the repository at this point in the history
  • Loading branch information
Kodi Neumiller authored and Kodi Neumiller committed Dec 4, 2018
1 parent 90da7b4 commit c615a2f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ deb: dist
( mv ../@PACKAGE@-@PACKAGE_VERSION@.tar.gz ../@PACKAGE@_@PACKAGE_VERSION@.orig.tar.gz )
( cd ../ && tar xzf @PACKAGE@_@PACKAGE_VERSION@.orig.tar.gz )
( cp -r debian/ ../@PACKAGE@-@PACKAGE_VERSION@ )
( cd ../@PACKAGE@-@PACKAGE_VERSION@ && debuild -j7 --preserve-env --prepend-path=$(prefix)/deps/bin -us -uc)
( cd ../@PACKAGE@-@PACKAGE_VERSION@ && debuild --preserve-env --prepend-path=$(prefix)/deps/bin -us -uc -j7)

##########################################################################

Expand Down
4 changes: 2 additions & 2 deletions debian/rules
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@
dh $@

override_dh_auto_install:
$(MAKE) DESTDIR=$$(pwd)/debian/bes install
$(MAKE) DESTDIR=$$(pwd)/debian/bes install -j7

override_dh_auto_test:
$(MAKE) DESTDIR=$$(pwd)/debian/bes check
$(MAKE) DESTDIR=$$(pwd)/debian/bes check -j7

override_dh_shlibdeps:
dh_shlibdeps --dpkg-shlibdeps-params=--ignore-missing-info
Expand Down

0 comments on commit c615a2f

Please sign in to comment.