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

Joe Groff 2011-01-24 22:42:06 -05:00
parent f522ca6269
commit 5cd8718b71
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
}