Bug 991035: Don't prepend ccache twice in building NSPR. r=ted

--HG--
extra : rebase_source : 95a4b5bd9d35b7cfc50da2fa4d14400f31f6d3f5
This commit is contained in:
Cervantes Yu 2014-09-01 17:34:17 +08:00
parent d73ec321cb
commit 31a5b6ed67

View File

@ -9119,6 +9119,11 @@ if test -n "$_WRAP_MALLOC"; then
_SUBDIR_CONFIG_ARGS="`echo $_SUBDIR_CONFIG_ARGS | sed -e 's/--enable-wrap-malloc *//'`"
fi
if test -n "$MOZ_USING_CCACHE"; then
# Avoid double prepending ccache by omitting --with-ccache in building NSPR.
_SUBDIR_CONFIG_ARGS="`echo $_SUBDIR_CONFIG_ARGS | sed -e 's/--with-ccache\S* *//'`"
fi
MOZ_SUBCONFIGURE_NSPR()
dnl ========================================================