Skip to content

Commit 117d1bc

Browse files
committed
Merged revisions 6621-6622 via svnmerge from
https://matplotlib.svn.sourceforge.net/svnroot/matplotlib/branches/v0_98_5_maint ........ r6621 | jdh2358 | 2008-12-15 12:19:01 -0800 (Mon, 15 Dec 2008) | 1 line hack to prevent distutils from linking our files ........ r6622 | jdh2358 | 2008-12-15 12:45:20 -0800 (Mon, 15 Dec 2008) | 1 line hack to prevent distutils from creating links in our sdist ........ svn path=/trunk/matplotlib/; revision=6624
1 parent 2632d95 commit 117d1bc

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

MANIFEST.in

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
include CHANGELOG KNOWN_BUGS INSTALL
22
include INTERACTIVE TODO
33
include Makefile MANIFEST.in MANIFEST
4-
include matplotlibrc.template matplotlibrc setup.cfg.template
4+
include matplotlibrc.template setup.cfg.template
55
include __init__.py setupext.py setup.py setupegg.py
66
include examples/data/*
77
include lib/mpl_toolkits

setup.py

+5
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,11 @@
66
The matplotlib build options can be modified with a setup.cfg file. See
77
setup.cfg.template for more information.
88
"""
9+
# distutils is breaking our sdists for files in symlinked dirs.
10+
# distutils will copy if os.link is not available, so this is a hack
11+
# to force copying
12+
import os
13+
del os.link
914

1015
# This dict will be updated as we try to select the best option during
1116
# the build process. However, values in setup.cfg will be used, if

0 commit comments

Comments
 (0)