From 066d2e87e367c5cbc6c163b378eb356be6509cd3 Mon Sep 17 00:00:00 2001 From: Shane McDonald Date: Mon, 15 May 2017 11:02:04 -0400 Subject: [PATCH] Fix DEB builds I was upgrading virtualenv for good measure in 4545fc1da1488bb1623de82ad19f78702bd6df62, but didnt foresee it causing problems. I was wrong. Worked for everything except Trusty builds. --- Makefile | 2 -- 1 file changed, 2 deletions(-) diff --git a/Makefile b/Makefile index 197ab2997c..5045ac7720 100644 --- a/Makefile +++ b/Makefile @@ -268,7 +268,6 @@ virtualenv_ansible: mkdir $(VENV_BASE); \ fi; \ if [ ! -d "$(VENV_BASE)/ansible" ]; then \ - pip install $(PIP_OPTIONS) --ignore-installed -U virtualenv && \ virtualenv --system-site-packages $(VENV_BASE)/ansible && \ $(VENV_BASE)/ansible/bin/pip install $(PIP_OPTIONS) --ignore-installed six packaging appdirs && \ $(VENV_BASE)/ansible/bin/pip install $(PIP_OPTIONS) --ignore-installed setuptools==35.0.2 && \ @@ -282,7 +281,6 @@ virtualenv_tower: mkdir $(VENV_BASE); \ fi; \ if [ ! -d "$(VENV_BASE)/tower" ]; then \ - pip install $(PIP_OPTIONS) --ignore-installed -U virtualenv && \ virtualenv --system-site-packages $(VENV_BASE)/tower && \ $(VENV_BASE)/tower/bin/pip install $(PIP_OPTIONS) --ignore-installed six packaging appdirs && \ $(VENV_BASE)/tower/bin/pip install $(PIP_OPTIONS) --ignore-installed setuptools==35.0.2 && \