From: <jd...@us...> - 2008-12-16 19:01:55
|
Revision: 6634 http://matplotlib.svn.sourceforge.net/matplotlib/?rev=6634&view=rev Author: jdh2358 Date: 2008-12-16 19:01:45 +0000 (Tue, 16 Dec 2008) Log Message: ----------- Merged revisions 6633 via svnmerge from https://matplotlib.svn.sourceforge.net/svnroot/matplotlib/branches/v0_98_5_maint ........ r6633 | jdh2358 | 2008-12-16 11:00:38 -0800 (Tue, 16 Dec 2008) | 1 line fixed os.link problem for win32 ........ Modified Paths: -------------- trunk/matplotlib/setup.py Property Changed: ---------------- trunk/matplotlib/ Property changes on: trunk/matplotlib ___________________________________________________________________ Modified: svnmerge-integrated - /branches/v0_91_maint:1-6428 /branches/v0_98_5_maint:1-6629 + /branches/v0_91_maint:1-6428 /branches/v0_98_5_maint:1-6633 Modified: trunk/matplotlib/setup.py =================================================================== --- trunk/matplotlib/setup.py 2008-12-16 19:00:38 UTC (rev 6633) +++ trunk/matplotlib/setup.py 2008-12-16 19:01:45 UTC (rev 6634) @@ -10,7 +10,10 @@ # distutils will copy if os.link is not available, so this is a hack # to force copying import os -del os.link +try: + del os.link +except AttributeError: + pass # 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. |