Merge pull request #71 from lovell/master

Use directory-exists check rather than file-exists check
This commit is contained in:
John Cupitt 2013-09-08 02:33:12 -07:00
commit 05bab10fb8
1 changed files with 1 additions and 1 deletions

View File

@ -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