From: pini Date: Tue, 29 Mar 2011 11:19:11 +0000 (+0000) Subject: Fix configure script X-Git-Tag: v3.6_beta2~104 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/4fb6c1f9cbaf984a0cdc3df8e2a1f3b4f91347c9 Fix configure script Use 'echo -e' to interpret \t and \n echo -e is bash-specific, use bash instead of sh in shebang. git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/simgrid/simgrid/trunk@9870 48e7efb5-ca39-0410-a469-dd3cf9ba447f --- diff --git a/configure b/configure index 83578a2340..351cfa3f10 100755 --- a/configure +++ b/configure @@ -1,5 +1,5 @@ -#! /bin/sh +#! /bin/bash echo "THIS COMMAND IS NOT AVAILABLE!" echo "Since v3.4 we use cmake. Now use:" -echo "\tcmake -DCMAKE_INSTALL_PREFIX= .\n\tmake\n\tmake install." +echo -e "\tcmake -DCMAKE_INSTALL_PREFIX= .\n\tmake\n\tmake install."