summaryrefslogtreecommitdiffstats
path: root/configure.py
diff options
context:
space:
mode:
authorEvan Martin <martine@danga.com>2012-08-12 19:01:38 (GMT)
committerEvan Martin <martine@danga.com>2012-08-12 19:01:38 (GMT)
commitedaf99e9bda420696b2173b44f0abfc63184aaae (patch)
treec54812e92c8d177a2145d903343321f086fd9562 /configure.py
parent07bd1e2f088c55dfb01609e73febc08cedf854ad (diff)
downloadNinja-edaf99e9bda420696b2173b44f0abfc63184aaae.zip
Ninja-edaf99e9bda420696b2173b44f0abfc63184aaae.tar.gz
Ninja-edaf99e9bda420696b2173b44f0abfc63184aaae.tar.bz2
use correct path separator for --with-gtest source
Diffstat (limited to 'configure.py')
-rwxr-xr-xconfigure.py4
1 files 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',