зеркало из https://github.com/mozilla/gecko-dev.git
Fix problem with Solaris /bin/sh interpreting ^ in a grep statement.
r=axel@pike.org
This commit is contained in:
Родитель
657d552367
Коммит
552833b89c
|
@ -2815,7 +2815,7 @@ MOZ_ARG_ENABLE_STRING(extensions,
|
|||
MOZ_EXTENSIONS=""
|
||||
elif test "$option" = "default"; then
|
||||
MOZ_EXTENSIONS="$MOZ_EXTENSIONS $MOZ_EXTENSIONS_DEFAULT"
|
||||
elif test `echo "$option" | grep -c ^-` != 0; then
|
||||
elif test `echo "$option" | grep -c \^-` != 0; then
|
||||
option=`echo $option | sed 's/^-//'`
|
||||
MOZ_EXTENSIONS=`echo "$MOZ_EXTENSIONS" | sed "s/ ${option}//"`
|
||||
else
|
||||
|
|
Загрузка…
Ссылка в новой задаче