From 6207b8bfa322b68d14cd31cd330c78806ceb7735 Mon Sep 17 00:00:00 2001 From: Olly Betts Date: Thu, 16 Apr 2015 10:55:34 +1200 Subject: [PATCH] Move testflags.py into Tools/ --- .travis.yml | 4 ++-- testflags.py => Tools/testflags.py | 0 2 files changed, 2 insertions(+), 2 deletions(-) rename testflags.py => Tools/testflags.py (100%) diff --git a/.travis.yml b/.travis.yml index 9cdc5bf8b..cd849f05f 100644 --- a/.travis.yml +++ b/.travis.yml @@ -96,8 +96,8 @@ before_install: - $CC --version - $CXX --version # Stricter compile flags for examples. Various headers and SWIG generated code prevents full use of -pedantic. - - export cflags=$(./testflags.py --language $SWIGLANG --cflags) && echo $cflags - - export cxxflags=$(./testflags.py --language $SWIGLANG --cxxflags) && echo $cxxflags + - export cflags=$(Tools/testflags.py --language $SWIGLANG --cflags) && echo $cflags + - export cxxflags=$(Tools/testflags.py --language $SWIGLANG --cxxflags) && echo $cxxflags script: - echo 'Configuring...' && echo -en 'travis_fold:start:script.1\\r' - ./autogen.sh && mkdir -p build/build && cd build/build && ../../configure $CONFIGOPTS diff --git a/testflags.py b/Tools/testflags.py similarity index 100% rename from testflags.py rename to Tools/testflags.py