Skip to content

Don't fail when an re2 prefix isn't found. #15

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

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
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