Ticket #2598: u7z: Improve handling of missing p7zip binaries.

Signed-off-by: Andrew Borodin <aborodin@vmail.ru>
This commit is contained in:
Daniel Hahler 2011-08-25 14:20:36 +02:00 committed by Andrew Borodin
parent 4a48f5ccaa
commit 4271c184de

View File

@ -5,7 +5,7 @@
# Some Bugfixes/workarounds by Sergiy Niskorodov <sgh@mail.zp.ua>
# Licensed under GNU GPL version 2 or later version.
P7ZIP=`which 7z 2>/dev/null` || P7ZIP=`which 7za 2>/dev/null` || P7ZIP=`which 7zr 2>/dev/null`
P7ZIP=`which 7z 2>/dev/null` || P7ZIP=`which 7za 2>/dev/null` || P7ZIP=`which 7zr 2>/dev/null` || P7ZIP=""
mcu7zip_list ()
{
@ -64,6 +64,11 @@ export LC_DATE
umask 077
if [ -z "$P7ZIP" ]; then
echo "Error: could not find p7zip (looked for 7z, 7za and 7zr)" >&2
exit 1
fi
cmd="$1"
shift