From: mquinson Date: Tue, 22 Dec 2009 17:11:36 +0000 (+0000) Subject: Move scripts not specific to cmake to a scripts/ directory X-Git-Tag: SVN~800 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/175f4a22eb477d75681b15b11345f7749a5b3d91 Move scripts not specific to cmake to a scripts/ directory git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/simgrid/simgrid/trunk@6926 48e7efb5-ca39-0410-a469-dd3cf9ba447f --- diff --git a/buildtools/Cmake/wait_dist.sh b/buildtools/Cmake/wait_dist.sh deleted file mode 100755 index 771280e49e..0000000000 --- a/buildtools/Cmake/wait_dist.sh +++ /dev/null @@ -1,9 +0,0 @@ -#! /bin/bash -# This script waits that the make_dist script finishes building the right archive in ~/simgrid - - -source ~/simgrid-svn/buildtools/Cmake/cmake_simgrid.conf - -get_version -wait_archive - diff --git a/buildtools/Cmake/build_from_dist.sh b/buildtools/scripts/build_from_dist.sh similarity index 74% rename from buildtools/Cmake/build_from_dist.sh rename to buildtools/scripts/build_from_dist.sh index 979b3b93c2..ee2fb5cb20 100755 --- a/buildtools/Cmake/build_from_dist.sh +++ b/buildtools/scripts/build_from_dist.sh @@ -3,6 +3,6 @@ # and then builds it using the autotools -source ~/simgrid-svn/buildtools/Cmake/cmake_simgrid.conf +source ~/simgrid-svn/buildtools/scripts/simgrid_build.conf build_from_autotools diff --git a/buildtools/Cmake/make_dist.sh b/buildtools/scripts/make_dist.sh similarity index 81% rename from buildtools/Cmake/make_dist.sh rename to buildtools/scripts/make_dist.sh index ef05ba072c..4bdfc3921c 100755 --- a/buildtools/Cmake/make_dist.sh +++ b/buildtools/scripts/make_dist.sh @@ -2,7 +2,7 @@ # This script creates a new dist archive from the svn set -e # fail fast on errors -source ~/simgrid-svn/buildtools/Cmake/cmake_simgrid.conf # get config +source ~/simgrid-svn/buildtools/scripts/simgrid_build.conf # get config echo "get Linux dependencies" sudo aptitude install -y libtool automake1.10 autoconf libgcj10-dev gcc g++ bash flex flexml doxygen bibtex bibtool iconv bibtex2html addr2line valgrind transfig diff --git a/buildtools/Cmake/cmake_simgrid.conf b/buildtools/scripts/simgrid_build.conf similarity index 100% rename from buildtools/Cmake/cmake_simgrid.conf rename to buildtools/scripts/simgrid_build.conf