From 1e4551db44d6c6d89ab5a595935b310ea0584210 Mon Sep 17 00:00:00 2001
From: Aaron Rosen <arosen@nicira.com>
Date: Mon, 16 Sep 2013 13:58:08 -0700
Subject: [PATCH] use method pip_install over sudo pip install so proxy
 settings work

Change-Id: I2f0c69a72ef73c317b707d99c65cab0fb590d158
---
 tools/fixup_stuff.sh | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/tools/fixup_stuff.sh b/tools/fixup_stuff.sh
index 371b25fc8f..87922c8ece 100755
--- a/tools/fixup_stuff.sh
+++ b/tools/fixup_stuff.sh
@@ -34,8 +34,8 @@ FILES=$TOP_DIR/files
 # ---------------
 
 # Pre-install affected packages so we can fix the permissions
-sudo pip install prettytable
-sudo pip install httplib2
+pip_install prettytable
+pip_install httplib2
 
 SITE_DIRS=$(python -c "import site; import os; print os.linesep.join(site.getsitepackages())")
 for dir in $SITE_DIRS; do