Ignore:
Timestamp:
Feb 25, 2011, 9:26:54 PM (13 years ago)
Author:
Bruno Cornec
Message:
  • Update mindi-busybox to 1.18.3 to avoid problems with the tar command which is now failing on recent versions with busybox 1.7.3
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2.2.9/mindi-busybox/scripts/kconfig/conf.c

    r1765 r2725  
    504504        case 's':
    505505            input_mode = ask_silent;
    506             valid_stdin = isatty(0) && isatty(1) && isatty(2);
     506            valid_stdin = isatty(0); //bbox: && isatty(1) && isatty(2);
    507507            break;
    508508        case 'd':
     
    606606    } while (conf_cnt);
    607607    if (conf_write(NULL)) {
    608         fprintf(stderr, _("\n*** Error during writing of the busybox configuration.\n\n"));
     608        fprintf(stderr, _("\n*** Error during writing of the configuration.\n\n"));
    609609        return 1;
    610610    }
Note: See TracChangeset for help on using the changeset viewer.