diff options
Diffstat (limited to 'contrib/splice3/setup')
-rwxr-xr-x | contrib/splice3/setup | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/contrib/splice3/setup b/contrib/splice3/setup deleted file mode 100755 index 109f9d4..0000000 --- a/contrib/splice3/setup +++ /dev/null @@ -1,21 +0,0 @@ -#!/bin/bash -echo 'checking for python2.7' -if which python2.7 >/dev/null; then - : -else - echo 'python2.7 not found. Quiting... :-(' - exit 1 -fi - -echo 'checking for man' -if which man >/dev/null; then - : -else - echo 'man not found. Quiting... :-(' - exit 1 -fi - -echo 'configuring path to python2.7' -PYPATH=`which python2.7` -sed -e s^PYTHON^"$PYPATH"^g LINUX/splice3.py >LINUX/splice3.cp -sed -e s^PYTHON^"$PYPATH"^g LINUX/splice3-deshadow.py >LINUX/splice3-deshadow.cp |