Browse code

Merge "Revert "install LIBS_FROM_GIT using python 2 and 3 where appropriate""

Zuul authored on 2019/11/05 05:18:13
Showing 1 changed files
... ...
@@ -380,16 +380,6 @@ function setup_dev_lib {
380 380
     fi
381 381
     local name=$1
382 382
     local dir=${GITDIR[$name]}
383
-    if python3_enabled; then
384
-        # Turn off Python 3 mode and install the package again,
385
-        # forcing a Python 2 installation. This ensures that all libs
386
-        # being used for development are installed under both versions
387
-        # of Python.
388
-        echo "Installing $name again without Python 3 enabled"
389
-        USE_PYTHON3=False
390
-        setup_develop $bindep $dir
391
-        USE_PYTHON3=True
392
-    fi
393 383
     setup_develop $bindep $dir
394 384
 }
395 385