Skip to content
Open
Changes from all commits
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
4 changes: 3 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,9 @@ def normalize(v):
if os.path.exists(os.path.join(re2_prefix, "include", "re2")):
break
else:
raise OSError("Cannot find RE2 library. Please install it from http://code.google.com/p/re2/wiki/Install")
# Hopefully the build environment is setup to include the re2 library
# default, so try with an empty prefix.
re2_prefix = ''

BASE_DIR = os.path.dirname(__file__)

Expand Down