Work with versions of bash older than version 2. Not part of the default build. Bug #104768.

This commit is contained in:
blizzard%redhat.com 2001-10-17 02:57:00 +00:00
Родитель 8a585b0ce7
Коммит 2c24498c21
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -156,7 +156,7 @@ ALREADY_RUNNING=`check_running`
# If there is no command line argument at all then try to open a new
# window in an already running instance.
if [ "${ALREADY_RUNNING}" == "1" ] && [ -z "$1" ]; then
if [ "${ALREADY_RUNNING}" -eq "1" ] && [ -z "$1" ]; then
exec $MOZ_PROGRAM -remote "xfeDoCommand(openBrowser)" 2>/dev/null >/dev/null
fi