bug 661908 - add mozbase packages to virtualenv. r=khuey

--HG--
extra : rebase_source : 8ecfb73d54692645941322f0c646896fd84e9214
This commit is contained in:
Ted Mielczarek 2012-04-25 13:37:16 -04:00
parent e747f876bd
commit f45c45dbeb

View File

@ -9,7 +9,26 @@ VPATH = @srcdir@
include $(DEPTH)/config/autoconf.mk
# Paths here are topsrcdir-relative, and
# must be in dependency-order.
setuptools_packages := \
other-licenses/simplejson-2.1.1 \
testing/mozbase/manifestdestiny \
testing/mozbase/mozinfo \
testing/mozbase/mozinstall \
testing/mozbase/mozlog \
testing/mozbase/mozprocess \
testing/mozbase/mozprofile \
testing/mozbase/mozrunner \
$(NULL)
define install_setuptools_package
cd $(topsrcdir)/$(1)/; $(PYTHON) setup.py develop
endef
default::
# install some packages
$(foreach package,$(setuptools_packages),$(call install_setuptools_package,$(package)))
include $(topsrcdir)/config/rules.mk