зеркало из https://github.com/mozilla/gecko-dev.git
Redirect errors from md5sum detection to /dev/null since md5sum is not available on all platforms.
Bug #163744 r=bryner
This commit is contained in:
Родитель
8fab3c5099
Коммит
795fe5cc9e
|
@ -172,9 +172,9 @@ moz_run_program()
|
|||
moz_test_binary /bin/type
|
||||
if [ $? -eq 1 ]
|
||||
then
|
||||
crc_prog=`type md5sum | awk '{print $3;}'`
|
||||
crc_prog=`type md5sum | awk '{print $3;}' 2>/dev/null`
|
||||
else
|
||||
crc_prog=`which md5sum`
|
||||
crc_prog=`which md5sum 2>/dev/null`
|
||||
fi
|
||||
if [ -x "$crc_prog" ]
|
||||
then
|
||||
|
|
Загрузка…
Ссылка в новой задаче