aboutsummaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorMatthew Wild <mwild1@gmail.com>2018-10-01 15:27:43 +0100
committerMatthew Wild <mwild1@gmail.com>2018-10-01 15:27:43 +0100
commit15b35ed42b0b90bad1e8ee2f119be23e0eda9e7f (patch)
tree40e5923f725ff9f3236d8bf344718c8cf281cffe /configure
parentb6d632fafa7a25ea79f11121df9ae63505c4d48a (diff)
downloadprosody-15b35ed42b0b90bad1e8ee2f119be23e0eda9e7f.tar.gz
prosody-15b35ed42b0b90bad1e8ee2f119be23e0eda9e7f.zip
configure: Remove unused function
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure19
1 files changed, 0 insertions, 19 deletions
diff --git a/configure b/configure
index 13f7eff3..8f591afc 100755
--- a/configure
+++ b/configure
@@ -107,25 +107,6 @@ die() {
exit 1
}
-find_helper() {
- explanation="$1"
- shift
- tried="$*"
- while [ -n "$1" ]
-do
- found=`find_program "$1"`
- if [ -n "$found" ]
- then
- echo "$1 found at $found"
- HELPER=$1
- return
- fi
- shift
- done
- echo "Could not find $explanation. Tried: $tried."
- die "Make sure one of them is installed and available in your PATH."
-}
-
case `echo -n x` in
-n*) echo_n_flag='';;
*) echo_n_flag='-n';;