From edaf99e9bda420696b2173b44f0abfc63184aaae Mon Sep 17 00:00:00 2001 From: Evan Martin Date: Sun, 12 Aug 2012 12:01:38 -0700 Subject: use correct path separator for --with-gtest source --- configure.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configure.py b/configure.py index 76abc72..f4881a7 100755 --- a/configure.py +++ b/configure.py @@ -291,10 +291,10 @@ if options.with_gtest: else: gtest_cflags = '-fvisibility=hidden ' + gtest_all_incs objs += n.build(built('gtest-all' + objext), 'cxx', - os.path.join(path, 'src/gtest-all.cc'), + os.path.join(path, 'src', 'gtest-all.cc'), variables=[('cflags', gtest_cflags)]) objs += n.build(built('gtest_main' + objext), 'cxx', - os.path.join(path, 'src/gtest_main.cc'), + os.path.join(path, 'src', 'gtest_main.cc'), variables=[('cflags', gtest_cflags)]) test_cflags = cflags + ['-DGTEST_HAS_RTTI=0', -- cgit v0.12