From d722e3709ca6a2313958a8f4779c7aa2747db063 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Helleu?= Date: Thu, 22 Oct 2015 20:54:12 +0200 Subject: [PATCH] Rename script build.sh to build-test.sh --- .travis.yml | 2 +- Makefile.am | 2 +- tools/{build.sh => build-test.sh} | 12 ++++++------ 3 files changed, 8 insertions(+), 8 deletions(-) rename tools/{build.sh => build-test.sh} (88%) diff --git a/.travis.yml b/.travis.yml index c5078d386..9afe62a54 100644 --- a/.travis.yml +++ b/.travis.yml @@ -20,7 +20,7 @@ before_script: - sudo pip install msgcheck pylint script: - - ./tools/build.sh + - ./tools/build-test.sh - msgcheck po/*.po - pylint doc/docgen.py diff --git a/Makefile.am b/Makefile.am index 634ea97cb..1da643863 100644 --- a/Makefile.am +++ b/Makefile.am @@ -64,7 +64,7 @@ EXTRA_DIST = AUTHORS.asciidoc \ cmake/cmake_uninstall.cmake.in \ po/CMakeLists.txt \ po/srcfiles.cmake \ - tools/build.sh \ + tools/build-test.sh \ tools/git-version.sh \ weechat.png \ weechat.pc.in \ diff --git a/tools/build.sh b/tools/build-test.sh similarity index 88% rename from tools/build.sh rename to tools/build-test.sh index 9c8f8db58..6559616ad 100755 --- a/tools/build.sh +++ b/tools/build-test.sh @@ -25,14 +25,14 @@ # configure commands. # # Syntax to run the script with environment variables: -# BUILDTOOL=cmake ./build.sh -# BUILDTOOL=autotools ./build.sh -# BUILDTOOL=cmake BUILDARGS="arguments" ./build.sh -# BUILDTOOL=autotools BUILDARGS="arguments" ./build.sh +# BUILDTOOL=cmake ./build-test.sh +# BUILDTOOL=autotools ./build-test.sh +# BUILDTOOL=cmake BUILDARGS="arguments" ./build-test.sh +# BUILDTOOL=autotools BUILDARGS="arguments" ./build-test.sh # # Syntax to run the script with arguments on command line: -# ./build.sh cmake [arguments] -# ./build.sh autotools [arguments] +# ./build-test.sh cmake [arguments] +# ./build-test.sh autotools [arguments] # # This script is used to build WeeChat in Travis CI environment. #