testing: Install vici Python module manually

easy_install is not included in Debian's python-setuptools package
anymore, so we install it manually using setup.py.
This commit is contained in:
Tobias Brunner
2020-09-03 13:34:19 +02:00
parent d9785b36a3
commit dcd8327933
+3 -2
View File
@@ -106,7 +106,7 @@ CONFIG_OPTS = \
--enable-systemd \ --enable-systemd \
--enable-counters \ --enable-counters \
--enable-save-keys \ --enable-save-keys \
--enable-python-eggs-install --enable-python-eggs
export ADA_PROJECT_PATH=/usr/local/ada/lib/gnat export ADA_PROJECT_PATH=/usr/local/ada/lib/gnat
@@ -126,6 +126,7 @@ build: configure
cd $(BUILDDIR) && make -j $(NUM_CPUS) cd $(BUILDDIR) && make -j $(NUM_CPUS)
install: build install: build
cd $(BUILDDIR) && make -j install cd $(BUILDDIR) && make -j install && \
cd $(DIR)/src/libcharon/plugins/vici/python && python setup.py install
# for Python-based updown scripts # for Python-based updown scripts
pip install python-daemon pip install python-daemon