Skip to content
Snippets Groups Projects
Commit 3b8bc287 authored by g0dil's avatar g0dil
Browse files

More robust SENF location check in senfutil

parent d1dfc00e
No related branches found
No related tags found
No related merge requests found
......@@ -57,7 +57,7 @@ def SetupForSENF(env, senf_paths = []):
# If we have a symbolic link (or directory) 'senf', we use it as our
# senf repository
for path in senf_paths:
if os.path.exists(path):
if os.path.exists(os.path.join(path,"senf/config.hh")):
print "\nUsing SENF in '%s/'\n" % os.path.abspath(path)
env.Append( LIBPATH = [ path ],
CPPPATH = [ path ],
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment