8000 Fixing osx makefile by fgb · Pull Request #4 · matplotlib/matplotlib · GitHub
[go: up one dir, main page]

Skip to content

Fixing osx makefile #4

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

Closed
wants to merge 15 commits into from
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Suggesting PYVERSION be input on the command line
Although a hard-coded PYVERSION=2.6 is safe for snow leopard, it might make more sense to leave it blank, defaulting to the 'python' command that takes precedence in the PATH. On the other hand, suggesting in the documentation that it can be included to the command line might prompt users to choose the right version without editing the makefile.
  • Loading branch information
fgb committed Feb 20, 2011
commit c658a842ef191672401fa9b4c473a35e0a4f1cbe
2 changes: 1 addition & 1 deletion README.osx
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@ lib, png or freetype on your system

Example usage::

PREFIX=/Users/jdhunter/dev make -f make.osx fetch deps mpl_install
PREFIX=/Users/jdhunter/dev [PYVERSION=2.6] make -f make.osx fetch deps mpl_install

3 changes: 1 addition & 2 deletions make.osx
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
# build mpl into a local install dir with
# PREFIX=/Users/jdhunter/dev make -f make.osx fetch deps mpl_install
# PREFIX=/Users/jdhunter/dev [PYVERSION=2.6] make -f make.osx fetch deps mpl_install
MPLVERSION=1.0rc1
PYVERSION=2.6
PYTHON=python${PYVERSION}
ZLIBVERSION=1.2.3
PNGVERSION=1.2.39
Expand Down
0