From cce2b3da0045dd7c95ef831df7128da862fe653b Mon Sep 17 00:00:00 2001 From: Lovell Fuller Date: Sat, 7 Sep 2013 22:12:50 +0100 Subject: [PATCH] Use directory-exists check rather than file-exists check for aclocal directory --- bootstrap.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bootstrap.sh b/bootstrap.sh index a58167ae..54b1ba1f 100755 --- a/bootstrap.sh +++ b/bootstrap.sh @@ -22,7 +22,7 @@ ACDIR=`aclocal --print-ac-dir` # OS X with brew sets ACDIR to # /usr/local/Cellar/automake/1.13.1/share/aclocal, the staging area, which is # totally wrong argh -if [ ! -f $ACDIR ]; then +if [ ! -d $ACDIR ]; then ACDIR=/usr/local/share/aclocal fi