X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/63a6adf1a95b8b369815d7b25ff4929fc285f981..4c3f6e301c9b8d3b11361775e6403c7a2118de2f:/buildtools/scripts/make_dist.sh diff --git a/buildtools/scripts/make_dist.sh b/buildtools/scripts/make_dist.sh deleted file mode 100755 index 50c4cf2faf..0000000000 --- a/buildtools/scripts/make_dist.sh +++ /dev/null @@ -1,20 +0,0 @@ -#!/bin/bash -# This script creates a new dist archive from the svn - -set -e # fail fast on errors - -# get config -if [ -e ~/simgrid-svn/buildtools/scripts/simgrid_build.conf ] ; then - source ~/simgrid-svn/buildtools/scripts/simgrid_build.conf -else - source ~/.simgrid_build.conf -fi - -if [ ! -e /usr/bin/libtool ] || [ ! -e /usr/bin/automake ] || [ ! -e /usr/bin/flex ] ; then - 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 || true -fi - -make_dist - -echo "Done!"