Commit d6788f2a authored by Leif Walsh's avatar Leif Walsh Committed by Yoni Fogel

fix passing of toku_svnroot


git-svn-id: file:///svn/toku/tokudb@52628 c7de825b-a66e-492c-adef-691d508d4ae1
parent a09c9dee
......@@ -740,7 +740,7 @@ if __name__ == '__main__':
help='skip the svn up and build phase before testing [default=False]')
build_group.add_option('--rebuild_period', type='int', dest='rebuild_period', default=60 * 60 * 24,
help='how many seconds between doing an svn up and rebuild, 0 means never rebuild [default=24 hours]')
default_toku_svnroot = os.path.relpath(os.path.join(default_toplevel, '../..'))
default_toku_svnroot = os.path.abspath(os.path.join(default_toplevel, '..', '..'))
build_group.add_option('--toku_svnroot', type='string', dest='toku_svnroot', default=default_toku_svnroot,
help='passed to cmake as TOKU_SVNROOT [default=%s]' % default_toku_svnroot)
build_group.add_option('--cc', type='string', dest='cc', default='gcc47',
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment