Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRob Landley <rob@landley.net>2006-01-30 04:30:39 +0300
committerRob Landley <rob@landley.net>2006-01-30 04:30:39 +0300
commitf8fd4db92f5626ef0065f5838fad42ad0fd0b362 (patch)
tree7a894633a6e3e0fd48f32f6fc1eb9596b01477ee /coreutils/fold.c
parentdd53c24d412c304e19ba64c7a9cb26dd1068bcd0 (diff)
Move SUSv2 obsolete feature disabling to debug menu, invert meaning of
symbol (switched on to remove now: test your apps to make sure they _don't_ do this, because as some point we should just yank it), fixup head/tail/fold. Also tweak "make allyesconfig" so anything starting with CONFIG_DEBUG gets left switched off. Possibly other things we want to put in the debug menu?
Diffstat (limited to 'coreutils/fold.c')
-rw-r--r--coreutils/fold.c32
1 files changed, 16 insertions, 16 deletions
diff --git a/coreutils/fold.c b/coreutils/fold.c
index ee0fdc250..53ef44681 100644
--- a/coreutils/fold.c
+++ b/coreutils/fold.c
@@ -53,25 +53,25 @@ extern int fold_main(int argc, char **argv)
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];
-
- if (a[0] == '-') {
- if (a[1] == '-' && !a[2])
- break;
- if (isdigit(a[1])) {
- char *s = xmalloc(strlen(a) + 2);
-
- s[0] = '-';
- s[1] = 'w';
- strcpy(s + 2, a + 1);
- argv[i] = s;
+ if(!ENABLE_DEBUG_YANK_SUSv2) {
+ /* Turn any numeric options into -w options. */
+ for (i = 1; i < argc; i++) {
+ char const *a = argv[i];
+
+ if (a[0] == '-') {
+ if (a[1] == '-' && !a[2])
+ break;
+ if (isdigit(a[1])) {
+ char *s = xmalloc(strlen(a) + 2);
+
+ s[0] = '-';
+ s[1] = 'w';
+ strcpy(s + 2, a + 1);
+ argv[i] = s;
+ }
}
}
}
-#endif
flags = bb_getopt_ulflags(argc, argv, "bsw:", &w_opt);
if (flags & FLAG_WIDTH)