Skip to content

Commit

Permalink
I am blind.
Browse files Browse the repository at this point in the history
Forgot to add a member for extra_compile_args to the nspr config return.

[#6]
  • Loading branch information
Paul Davis committed Apr 5, 2009
1 parent e5ae70c commit 1c9d0cc
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion setup.py
Expand Up @@ -35,7 +35,12 @@ def nspr_config():
if pipe.wait() != 0:
raise RuntimeError("Failed to get nspr config.")
bits = stdout.split()
ret = {"include_dirs": [], "library_dirs": [], "libraries": []}
ret = {
"include_dirs": [],
"library_dirs": [],
"libraries": [],
"extra_compile_args": []
}
prfx = {
"-I": ("include_dirs", 2),
"-L": ("library_dirs", 2),
Expand Down

0 comments on commit 1c9d0cc

Please sign in to comment.