helpers/python-module: added a do_build() that runs setup.py build.

This commit is contained in:
Juan RP 2010-11-27 22:32:13 +01:00
parent 8a501ac34f
commit 919b60c0b5

View file

@ -2,6 +2,11 @@
# This helper is for templates installing python modules.
#
do_build()
{
python setup.py build ${make_build_args} || return 1
}
do_install()
{
if [ -z "$make_install_args" ]; then