diff options
author | Matt Martz <matt@sivel.net> | 2015-03-27 12:03:20 -0500 |
---|---|---|
committer | Matt Martz <matt@sivel.net> | 2015-03-27 12:03:20 -0500 |
commit | 104b2036f77727766c9d0e537591c4fbec8bd7f8 (patch) | |
tree | 3c1f2dc2dc6092160c182d53678e1d9360b69617 /hacking/env-setup | |
parent | 75f933cf6454d770ed782e7f931090954cc8dbf9 (diff) | |
download | ansible-104b2036f77727766c9d0e537591c4fbec8bd7f8.tar.gz |
egg_info is now written directly to lib
Diffstat (limited to 'hacking/env-setup')
-rw-r--r-- | hacking/env-setup | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/hacking/env-setup b/hacking/env-setup index f52c91a8b9..49390dfe5e 100644 --- a/hacking/env-setup +++ b/hacking/env-setup @@ -42,11 +42,10 @@ expr "$MANPATH" : "${PREFIX_MANPATH}.*" > /dev/null || export MANPATH="$PREFIX_M # Do the work in a function so we don't repeat ourselves later gen_egg_info() { - python setup.py egg_info if [ -e "$PREFIX_PYTHONPATH/ansible.egg-info" ] ; then rm -r "$PREFIX_PYTHONPATH/ansible.egg-info" fi - mv "ansible.egg-info" "$PREFIX_PYTHONPATH" + python setup.py egg_info } if [ "$ANSIBLE_HOME" != "$PWD" ] ; then |