diff options
author | Fred Drake <fdrake@acm.org> | 2007-09-04 19:43:19 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2007-09-04 19:43:19 (GMT) |
commit | 9c771ba0858c58c56eb37f475d05d5eb528890b4 (patch) | |
tree | 356793ee9e54923189d6ea562f693969e710c956 /setup.py | |
parent | 200a6157745fba7a658da53d9c8a7b85a900d565 (diff) | |
download | cpython-9c771ba0858c58c56eb37f475d05d5eb528890b4.zip cpython-9c771ba0858c58c56eb37f475d05d5eb528890b4.tar.gz cpython-9c771ba0858c58c56eb37f475d05d5eb528890b4.tar.bz2 |
fix typo
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -769,7 +769,7 @@ class PyBuildExt(build_ext): if host_platform == 'darwin' and os_release < 9: # In every directory on the search path search for a dynamic # library and then a static library, instead of first looking - # for dynamic libraries on the entiry path. + # for dynamic libraries on the entire path. # This way a staticly linked custom readline gets picked up # before the (possibly broken) dynamic library in /usr/lib. readline_extra_link_args = ('-Wl,-search_paths_first',) |