Bug 1066669 - Use a regex that OS X sed understands. Fixes configure failures when using --with-ccache=... rs=ted

This commit is contained in:
Markus Stange 2014-09-12 18:31:50 +02:00
Родитель 34787e1ea2
Коммит d0043a62fe
1 изменённых файлов: 1 добавлений и 1 удалений

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

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