Commit 371cffc3 by Aleksandr Mezin

python-lxc: always set --root for install command

This implies '--single-version-externally-managed', which we actually want for autotools builds. Fixes current problems with jenkins test suite. Signed-off-by: 's avatarAleksandr Mezin <mezin.alexander@gmail.com>
parent f6ab2204
......@@ -6,18 +6,15 @@ else
DISTSETUPOPTS=
endif
INSTALL_OPTS := install --prefix=$(prefix) --no-compile $(DISTSETUPOPTS)
CALL_SETUP_PY := cd @srcdir@ && $(PYTHON) setup.py build -b @abs_builddir@/build
all:
$(CALL_SETUP_PY) build_ext -I @abs_top_srcdir@/src -L @abs_top_builddir@/src/lxc --no-pkg-config
DESTDIR = / # default
install:
if [ -z "$(DESTDIR)" ]; then \
$(CALL_SETUP_PY) $(INSTALL_OPTS); \
else \
$(CALL_SETUP_PY) $(INSTALL_OPTS) --root=$(DESTDIR); \
fi
$(CALL_SETUP_PY) install --prefix=$(prefix) --no-compile $(DISTSETUPOPTS) --root=$(DESTDIR)
clean-local:
rm -rf @builddir@/build
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment