diff options
author | Matthew Wild <mwild1@gmail.com> | 2018-10-01 15:27:43 +0100 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2018-10-01 15:27:43 +0100 |
commit | 087eaf51869560a78bfca7c60e85819aaffe538b (patch) | |
tree | 40e5923f725ff9f3236d8bf344718c8cf281cffe /configure | |
parent | d7765c7df820c386fc82a40a28df6dde96f323b0 (diff) | |
download | prosody-087eaf51869560a78bfca7c60e85819aaffe538b.tar.gz prosody-087eaf51869560a78bfca7c60e85819aaffe538b.zip |
configure: Remove unused function
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 19 |
1 files changed, 0 insertions, 19 deletions
@@ -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';; |