9 lines
288 B
Plaintext
9 lines
288 B
Plaintext
|
#!/bin/sh -e
|
||
|
|
||
|
# before removing python-api files
|
||
|
python2_sitedir=$(python -c "from distutils.sysconfig import get_python_lib; print(get_python_lib())")
|
||
|
easy_install --install-dir=$python2_sitedir -mxNq vpp_papi
|
||
|
|
||
|
# the egg has been copied during install
|
||
|
rm $python2_sitedir/vpp_papi-*.egg
|