summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn J. Camilleri <john@digitalgrammars.com>2020-11-17 00:48:31 +0100
committerJohn J. Camilleri <john@digitalgrammars.com>2020-11-17 00:48:31 +0100
commit3df552eb5de8850dade820a72f73c6bd0e1f739a (patch)
tree131e2a678bbc02194c623d9d664431797c43c9bc
parent7dc6717b5e95122a810d3b580981fc4ce0c9744b (diff)
Remove 'download/gfc'
-rw-r--r--download/gfc25
1 files changed, 0 insertions, 25 deletions
diff --git a/download/gfc b/download/gfc
deleted file mode 100644
index 7c1d30515..000000000
--- a/download/gfc
+++ /dev/null
@@ -1,25 +0,0 @@
-#!/bin/sh
-
-prefix="/usr/local"
-
-case "i386-apple-darwin9.3.0" in
- *-cygwin)
- prefix=`cygpath -w "$prefix"`;;
-esac
-
-exec_prefix="${prefix}"
-GF_BIN_DIR="${exec_prefix}/bin"
-GF_DATA_DIR="${prefix}/share/GF-3.0-beta"
-
-GFBIN="$GF_BIN_DIR/gf"
-
-if [ ! -x "${GFBIN}" ]; then
- GFBIN=`which gf`
-fi
-
-if [ ! -x "${GFBIN}" ]; then
- echo "gf not found."
- exit 1
-fi
-
-exec $GFBIN --batch "$@"