From 779f30c39f1b5d3776c0d88c5e0a630e547ea77c Mon Sep 17 00:00:00 2001 From: MooSE Date: Sat, 8 May 2021 16:29:33 +0300 Subject: [PATCH] Ticket #4239: extfs/u7z: support official 7z binary (7zz). Signed-off-by: Andrew Borodin --- src/vfs/extfs/helpers/u7z | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/vfs/extfs/helpers/u7z b/src/vfs/extfs/helpers/u7z index 04f3f9c81..91301c3d9 100755 --- a/src/vfs/extfs/helpers/u7z +++ b/src/vfs/extfs/helpers/u7z @@ -17,7 +17,11 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . -P7ZIP=`which 7z 2>/dev/null` || P7ZIP=`which 7za 2>/dev/null` || P7ZIP=`which 7zr 2>/dev/null` || P7ZIP="" +P7ZIP=`which 7z 2>/dev/null` \ + || P7ZIP=`which 7zz 2>/dev/null` \ + || P7ZIP=`which 7za 2>/dev/null` \ + || P7ZIP=`which 7zr 2>/dev/null` \ + || P7ZIP="" # Let the test framework hook in: P7ZIP=${MC_TEST_EXTFS_LIST_CMD:-$P7ZIP}