diff options
author | d3v11 <d3v11@d3v11.ano> | 2011-10-28 20:42:24 -0400 |
---|---|---|
committer | d3v11 <d3v11@d3v11.ano> | 2011-10-28 20:42:24 -0400 |
commit | cf2d2906701dda5f62c1fa87436788867ab0b003 (patch) | |
tree | afeb6c56afcc89df1e55803bdc4dc439f7d9161d /contrib/splicex | |
parent | 3a840e229d53c4be9b7d24609785dade54e2319f (diff) | |
download | resdb-cf2d2906701dda5f62c1fa87436788867ab0b003.tar.gz resdb-cf2d2906701dda5f62c1fa87436788867ab0b003.zip |
SpliceX update
Diffstat (limited to 'contrib/splicex')
-rwxr-xr-x | contrib/splicex/configure | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/contrib/splicex/configure b/contrib/splicex/configure index 4568b5b..2795772 100755 --- a/contrib/splicex/configure +++ b/contrib/splicex/configure @@ -4,7 +4,8 @@ if [ -z "$1" ]; then exit 1 fi -echo -ne 'checking for python...' +echo -e 'checking dependencies: ' +echo -ne " checking for python as <$1>..." if which `which "$1"` >/dev/null; then PYPATH=`which "$1"` echo -ne ' OK' @@ -14,7 +15,7 @@ else exit 1 fi -echo -ne 'checking for man...' +echo -ne ' checking for man...' if which man >/dev/null; then echo -ne ' OK' echo @@ -23,7 +24,7 @@ else exit 1 fi -echo -ne 'checking for cython...' +echo -ne ' checking for cython...' if which cython >/dev/null; then echo -ne ' OK' echo @@ -32,7 +33,7 @@ else exit 1 fi -echo -ne 'checking for gcc...' +echo -ne ' checking for gcc...' if which gcc >/dev/null; then echo -ne ' OK' echo |