Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Issue #371: Fix Python library search for OS X framework virtualenvs. #26

Commits on Oct 30, 2012

  1. Issue pyinstaller#371: Fix Python library search for OS X framework v…

    …irtualenvs.
    
    In a virtualenv created by a framework build of Python on OS X, the
    Python library is named ".Python", but Analysis._check_python_library()
    thinks it's "Python" (because ".Python".endswith("Python") evaluates to
    True).  Using os.path.basename() in lieu of str.endswith() fixes the
    problem.
    Noah Treuhaft committed Oct 30, 2012
    Configuration menu
    Copy the full SHA
    059ff5a View commit details
    Browse the repository at this point in the history