|
From: <jd...@us...> - 2008-12-15 20:19:04
|
Revision: 6621
http://matplotlib.svn.sourceforge.net/matplotlib/?rev=6621&view=rev
Author: jdh2358
Date: 2008-12-15 20:19:01 +0000 (Mon, 15 Dec 2008)
Log Message:
-----------
hack to prevent distutils from linking our files
Modified Paths:
--------------
branches/v0_98_5_maint/setup.py
Modified: branches/v0_98_5_maint/setup.py
===================================================================
--- branches/v0_98_5_maint/setup.py 2008-12-15 19:52:29 UTC (rev 6620)
+++ branches/v0_98_5_maint/setup.py 2008-12-15 20:19:01 UTC (rev 6621)
@@ -6,6 +6,11 @@
The matplotlib build options can be modified with a setup.cfg file. See
setup.cfg.template for more information.
"""
+# distutils is breaking our sdists for files in symlinked dirs.
+# distutils will copy if os.link is not available, so this is a hack
+# to force copying
+import os
+del os.link
# This dict will be updated as we try to select the best option during
# the build process. However, values in setup.cfg will be used, if
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|