Bug 545015 - Attempt to work around the configure breakage on Windows 7 with errors about not being able to write to conftest.exe; r=ted

This commit is contained in:
Ehsan Akhgari 2012-01-18 16:33:42 -05:00
parent f9eeb3e020
commit 6130a65eaf

View File

@ -566,6 +566,11 @@ if test -n "$CROSS_COMPILE" -a "$target" != "$host"; then
AC_DEFINE(CROSS_COMPILE)
else
AC_PROG_CC
case "$target" in
*-mingw*)
# Work around the conftest.exe access problem on Windows
sleep 1
esac
AC_PROG_CXX
AC_PROG_RANLIB
MOZ_PATH_PROGS(AS, $AS as, $CC)