From baecfa142644eb5f5c6dd6f8e2f531c362fa3747 Mon Sep 17 00:00:00 2001 From: Lasse Collin Date: Sat, 6 Jul 2024 14:04:48 +0300 Subject: [PATCH] xz: Remove the TODO comment about --recursive It won't be implemented. find + xargs is more flexible, for example, it allows compressing small files in parallel. An example for that has been included in the xz man page since 2010. --- src/xz/args.c | 1 - 1 file changed, 1 deletion(-) diff --git a/src/xz/args.c b/src/xz/args.c index eba1b97d..b3743cea 100644 --- a/src/xz/args.c +++ b/src/xz/args.c @@ -252,7 +252,6 @@ parse_real(args_info *args, int argc, char **argv) { "single-stream", no_argument, NULL, OPT_SINGLE_STREAM }, { "no-sparse", no_argument, NULL, OPT_NO_SPARSE }, { "suffix", required_argument, NULL, 'S' }, - // { "recursive", no_argument, NULL, 'r' }, // TODO { "files", optional_argument, NULL, OPT_FILES }, { "files0", optional_argument, NULL, OPT_FILES0 },