aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/run_tests/build_python.sh
diff options
context:
space:
mode:
authorGravatar Masood Malekghassemi <soltanmm@users.noreply.github.com>2015-06-10 13:30:14 -0700
committerGravatar Masood Malekghassemi <soltanmm@users.noreply.github.com>2015-06-10 17:37:55 -0700
commit4b4181ed1c9fdd6be102b70c84e2cf70c9f00817 (patch)
treef9e77bc609a320067b50ed0720d2b3ed007a437d /tools/run_tests/build_python.sh
parenta08694eff2a036b68f8bd0172d2eb0d16d560bb7 (diff)
Ensure C89 compatibility in Linux tests
Diffstat (limited to 'tools/run_tests/build_python.sh')
-rwxr-xr-xtools/run_tests/build_python.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/run_tests/build_python.sh b/tools/run_tests/build_python.sh
index d0f09e4d8b..53db6af0ea 100755
--- a/tools/run_tests/build_python.sh
+++ b/tools/run_tests/build_python.sh
@@ -38,5 +38,5 @@ rm -rf python2.7_virtual_environment
virtualenv -p /usr/bin/python2.7 python2.7_virtual_environment
source python2.7_virtual_environment/bin/activate
pip install -r src/python/requirements.txt
-CFLAGS=-I$root/include LDFLAGS=-L$root/libs/$CONFIG pip install src/python/src
+CFLAGS="-I$root/include -std=c89" LDFLAGS=-L$root/libs/$CONFIG pip install src/python/src
pip install src/python/interop