Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Remove obselete files.
[simgrid.git] / buildtools / scripts / make_dist.sh
diff --git a/buildtools/scripts/make_dist.sh b/buildtools/scripts/make_dist.sh
deleted file mode 100755 (executable)
index 50c4cf2..0000000
+++ /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!"