From 9bdb5be52f15298cfa6aeae059193a1d902b96f5 Mon Sep 17 00:00:00 2001 From: Lucas Nussbaum Date: Tue, 29 Mar 2011 11:59:49 +0200 Subject: [PATCH] Fix configure script Use 'echo -e' to interpret \t and \n echo -e is bash-specific, use bash instead of sh in shebang. --- configure | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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." -- 2.20.1