Bug 703930 - Make syntax errors in *makefiles.sh abort the build; r=khuey

This commit is contained in:
Ed Morley 2011-11-30 18:37:58 +00:00
Родитель 67990e6db0
Коммит 18ef5ba893
1 изменённых файлов: 6 добавлений и 0 удалений

Просмотреть файл

@ -41,6 +41,9 @@
# There is no need to rerun autoconf after adding makefiles.
# You only need to run configure.
# Turn on exit on error
set -o errexit
MAKEFILES=""
# add_makefiles - Shell function to add makefiles to MAKEFILES
@ -151,3 +154,6 @@ fi
# Services makefiles
. "${srcdir}/services/makefiles.sh"
# Turn off exit on error, since it breaks the rest of configure
set +o errexit