From 816fab000da4e77719ee245f32ccaeaa25ac253d Mon Sep 17 00:00:00 2001 From: Vinnie Falco Date: Mon, 17 Mar 2014 14:49:31 -0700 Subject: [PATCH] Fix SConstruct compiler arguments --- SConstruct | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/SConstruct b/SConstruct index 247295ca5..ffdbb22e4 100644 --- a/SConstruct +++ b/SConstruct @@ -387,8 +387,8 @@ if TravisBuild: env.Append(CXXFLAGS = ['-DTRAVIS_CI_BUILD']) if RippleRepository: - env.Append(CFLAGS = ['DRIPPLE_MASTER_BUILD']) - env.Append(CXXFLAGS = ['DRIPPLE_MASTER_BUILD']) + env.Append(CFLAGS = ['-DRIPPLE_MASTER_BUILD']) + env.Append(CXXFLAGS = ['-DRIPPLE_MASTER_BUILD']) # Display build configuration information for debugging purposes def print_nv_pair(n, v):