From 0bd0257fe0fb3835af056ec933b010aad2722f93 Mon Sep 17 00:00:00 2001 From: Glenn L McGrath Date: Sun, 11 Dec 2005 03:09:05 +0000 Subject: Add build options to control SuS compatability, allows numeric option handling to be disabled. Defaults to enabled, so no changes in default behaviour --- coreutils/fold.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'coreutils/fold.c') diff --git a/coreutils/fold.c b/coreutils/fold.c index 8f74ed88d..ee0fdc250 100644 --- a/coreutils/fold.c +++ b/coreutils/fold.c @@ -52,6 +52,8 @@ extern int fold_main(int argc, char **argv) int i; int errs = 0; + +#ifdef CONFIG_FEATURE_SUSv2_OBSOLETE /* Turn any numeric options into -w options. */ for (i = 1; i < argc; i++) { char const *a = argv[i]; @@ -69,6 +71,7 @@ extern int fold_main(int argc, char **argv) } } } +#endif flags = bb_getopt_ulflags(argc, argv, "bsw:", &w_opt); if (flags & FLAG_WIDTH) -- cgit v1.2.3