Show More
@@ -581,7 +581,11 b' def has_debhelper():' | |||||
581 | br'dh is a part of debhelper.', ignorestatus=True) |
|
581 | br'dh is a part of debhelper.', ignorestatus=True) | |
582 | dh_py2 = matchoutput('dh_python2 --help', |
|
582 | dh_py2 = matchoutput('dh_python2 --help', | |
583 | br'other supported Python versions') |
|
583 | br'other supported Python versions') | |
584 | return dpkg and dh and dh_py2 |
|
584 | # debuild comes from the 'devscripts' package, though you might want | |
|
585 | # the 'build-debs' package instead, which has a dependency on devscripts. | |||
|
586 | debuild = matchoutput('debuild --help', | |||
|
587 | br'to run debian/rules with given parameter') | |||
|
588 | return dpkg and dh and dh_py2 and debuild | |||
585 |
|
589 | |||
586 | @check("demandimport", "demandimport enabled") |
|
590 | @check("demandimport", "demandimport enabled") | |
587 | def has_demandimport(): |
|
591 | def has_demandimport(): |
General Comments 0
You need to be logged in to leave comments.
Login now