https://git.reactos.org/?p=reactos.git;a=commitdiff;h=8283a9ece21c27a0edd438a6c3e5c482dd4f67aa
commit 8283a9ece21c27a0edd438a6c3e5c482dd4f67aa Author: Serge Gautherie <[email protected]> AuthorDate: Sun Jun 24 00:57:57 2018 +0200 Commit: Mark Jansen <[email protected]> CommitDate: Sun Aug 19 17:39:15 2018 +0200 [LOG2LINES] Enforce "Iso" type when unpacking the Iso file Work around some "7z" dealing with files not named "*.iso" as "Cab" type. Issue at least with "7-Zip [64] 9.20" on "Ubuntu 16.04". CORE-14734 --- sdk/tools/log2lines/config.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sdk/tools/log2lines/config.h b/sdk/tools/log2lines/config.h index 5f3d3cb6e9..e07dfa259b 100644 --- a/sdk/tools/log2lines/config.h +++ b/sdk/tools/log2lines/config.h @@ -21,7 +21,7 @@ #define CMD_7Z "7z" #define UNZIP_FMT_7Z "%s e -y %s -o%s > " DEV_NULL -#define UNZIP_FMT "%s x -y -r %s -o%s > " DEV_NULL +#define UNZIP_FMT "%s x -tIso -y -r %s -o%s > " DEV_NULL #define UNZIP_FMT_CAB \ "%s x -y -r %s" PATH_STR "reactos" PATH_STR "reactos.cab -o%s" \ PATH_STR "reactos" PATH_STR "reactos > " DEV_NULL
