Bug 1067248: Fix the regular expression to strip ccache in building NSPR in bug 1066669. r=ted

--HG--
extra : rebase_source : 86b9b52966ce43d5ace9f2189f1db38173549f19
This commit is contained in:
Cervantes Yu 2014-09-15 17:48:38 +08:00
parent ec3f2b7465
commit 02d2e38ba6

View File

@ -9137,7 +9137,7 @@ 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[^ ]*//'`"
_SUBDIR_CONFIG_ARGS="`echo $_SUBDIR_CONFIG_ARGS | sed -e 's/--with-ccache[[^ ]]*//'`"
fi
MOZ_SUBCONFIGURE_NSPR()