Work around autoconf and shell issues.
authorAlan T. DeKok <aland@freeradius.org>
Fri, 25 Oct 2013 00:11:57 +0000 (20:11 -0400)
committerAlan T. DeKok <aland@freeradius.org>
Fri, 25 Oct 2013 00:11:57 +0000 (20:11 -0400)
Which expect paths to NOT have spaces in them.  Which they do
on OSX.

configure

index b3c9dfb..0bf3acc 100755 (executable)
--- a/configure
+++ b/configure
@@ -621,7 +621,7 @@ else
   lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR
   for dir in $PATH /usr/ucb; do
     IFS="$lt_save_ifs"
-    if (test -f $dir/echo || test -f $dir/echo$ac_exeext) &&
+    if (test -f "$dir/echo" || test -f "$dir/echo$ac_exeext") &&
        test "X`($dir/echo '\t') 2>/dev/null`" = 'X\t' &&
        echo_testing_string=`($dir/echo "$echo_test_string") 2>/dev/null` &&
        test "X$echo_testing_string" = "X$echo_test_string"; then