From aa6229dd85dfe0684dbfbbcde7e3148af8f2f7d8 Mon Sep 17 00:00:00 2001 From: Marcello Stanisci Date: Wed, 27 Mar 2019 18:47:16 +0100 Subject: fix pip3 --- Makefile.in | 4 ++-- configure.ac | 10 ++++++++++ 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/Makefile.in b/Makefile.in index c7b8750..5cb170b 100644 --- a/Makefile.in +++ b/Makefile.in @@ -40,9 +40,9 @@ devinstall: $(templates) install-data # install into prefix .PHONY: install install: $(templates) install-data - @pip3 install . --install-option="--prefix=@prefix@" + @pip3 install . @DEBIAN_PIP3_SYSTEM@ --install-option="--prefix=@prefix@" @# force update when sources changed - @pip3 install . --install-option="--prefix=@prefix@" --upgrade --no-deps + @pip3 install . @DEBIAN_PIP3_SYSTEM@ --install-option="--prefix=@prefix@" --upgrade --no-deps cd talerdonations/donations/static/web-common && make install && cd - # run testcases diff --git a/configure.ac b/configure.ac index 8852d84..c7440be 100644 --- a/configure.ac +++ b/configure.ac @@ -31,6 +31,16 @@ AC_MSG_RESULT([$VERSION]) AX_COMPARE_VERSION([$VERSION],[lt],[6.0], [AC_MSG_ERROR([Please install pip3>=6.0])]) +# On Debian systems, we may need to pass "--system" to pip3 to get +# to the desired installation target directory +pip3 install --help | grep '\-\-system' >> /dev/null +if test $? -ne 0; +then + DEBIAN_PIP3_SYSTEM="" +else + DEBIAN_PIP3_SYSTEM="--system" +fi +AC_SUBST(DEBIAN_PIP3_SYSTEM) # # Check for tsc -- cgit v1.2.3