build-support/factor.sh: typo was causing make detection to fail on linux

db4
Joe Groff 2011-01-24 22:42:06 -05:00
parent fb77d4ecc6
commit bdc0526f37
1 changed files with 1 additions and 1 deletions

View File

@ -97,7 +97,7 @@ set_make() {
dragonflybsd) MAKE='gmake';;
*) MAKE='make';;
esac
if ! [[ $MAKE = 'gmake' ]] ; then
if [[ $MAKE = 'gmake' ]] ; then
ensure_program_installed gmake
fi
}