Bug 353559 - add_app_options doesn't work with non-bash shells, patch by Walter Meinl <wuno@lsvw.de>, r=me

This commit is contained in:
benjamin%smedbergs.us 2006-10-04 16:15:47 +00:00
parent ead1476ed2
commit 202456bc3d

View File

@ -79,7 +79,7 @@ ac_add_options() {
ac_add_app_options() {
APP=$1
shift;
if [ "$APP" == "$MOZ_BUILD_APP" ]; then
if [ "$APP" = "$MOZ_BUILD_APP" ]; then
ac_add_options "$*";
fi
}