1
1
Fork 0
mirror of https://github.com/pypa/pip synced 2023-12-13 21:30:23 +01:00

using realpath since tmp dirs on OSX can be symlinks

This commit is contained in:
Marcus Smith 2013-01-15 23:18:23 -08:00
parent f65e29ae65
commit e76ae0821c

View file

@ -32,7 +32,8 @@ if running_under_virtualenv():
else:
# Use tempfile to create a temporary folder for build
# Note: we are NOT using mkdtemp so we can have a consistent build dir
build_prefix = os.path.join(tempfile.gettempdir(), 'pip-build')
# Note: using realpath due to tmp dirs on OSX being symlinks
build_prefix = os.path.realpath(os.path.join(tempfile.gettempdir(), 'pip-build'))
## FIXME: keep src in cwd for now (it is not a temporary folder)
try: