Opened 14 years ago
Closed 14 years ago
#17832 closed Cleanup/optimization (fixed)
setup.py - purelib comment
| Reported by: | Matthias Kestenholz | Owned by: | nobody |
|---|---|---|---|
| Component: | Core (Other) | Version: | dev |
| Severity: | Normal | Keywords: | setup.py |
| Cc: | Triage Stage: | Ready for checkin | |
| Has patch: | yes | Needs documentation: | no |
| Needs tests: | no | Patch needs improvement: | no |
| Easy pickings: | yes | UI/UX: | no |
Description
A comment in django/setup.py regarding purelib is exactly the wrong way around. This problem exists since Oct 16, 2006.
The following change fixes the comment:
diff --git a/setup.py b/setup.py
index fa42cac..72a38d0 100644
--- a/setup.py
+++ b/setup.py
@@ -36,7 +36,7 @@ def fullsplit(path, result=None):
return result
return fullsplit(head, [tail] + result)
-# Tell distutils to put the data_files in platform-specific installation
+# Tell distutils to not put the data_files in platform-specific installation
# locations. See here for an explanation:
# http://groups.google.com/group/comp.lang.python/browse_thread/thread/35ec7b2fed36eaec/2105ee4d9e8042cb
for scheme in INSTALL_SCHEMES.values():
Change History (2)
comment:1 by , 14 years ago
| Triage Stage: | Unreviewed → Ready for checkin |
|---|---|
| Type: | Bug → Cleanup/optimization |
comment:2 by , 14 years ago
| Resolution: | → fixed |
|---|---|
| Status: | new → closed |
Note:
See TracTickets
for help on using tickets.
In [17667]: