Commit 6d856825 authored by Tres Seaver's avatar Tres Seaver

Forward-port out-of-tree build fix.

parent 489ec269
#!/usr/bin/env python2.3 #!/usr/bin/env python2.4
############################################################################## ##############################################################################
# #
...@@ -49,7 +49,8 @@ from distutils.command.install import install ...@@ -49,7 +49,8 @@ from distutils.command.install import install
from distutils.command.install_data import install_data from distutils.command.install_data import install_data
from distutils.util import convert_path from distutils.util import convert_path
sys.path.insert(0, 'inst') where = os.path.split(__file__)[0]
sys.path.insert(0, os.path.join(where, 'inst'))
import versions import versions
del sys.path[0] del sys.path[0]
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment