Skip to content

Commit

Permalink
Use directory-exists check rather than file-exists check for aclocal …
Browse files Browse the repository at this point in the history
…directory
  • Loading branch information
lovell committed Sep 7, 2013
1 parent d78b417 commit cce2b3d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bootstrap.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit cce2b3d

Please sign in to comment.