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/util.c

    r1765 r2725  
    4545            fprintf(out, "\t%s\n", file->name);
    4646    }
    47     fprintf(out, "\n.config include/autoconf.h: $(deps_config)\n\n$(deps_config):\n");
     47    fprintf(out,
     48        "\n"
     49        ".config include/autoconf.h: $(deps_config)\n"
     50        "\n"
     51        "include/autoconf.h: .config\n" /* bbox */
     52        "\n"
     53        "$(deps_config):\n");
    4854    fclose(out);
    4955    rename("..config.tmp", name);
     
    5258
    5359
    54 /* Allocate initial growable sting */
     60/* Allocate initial growable string */
    5561struct gstr str_new(void)
    5662{
     
    107113    return gs->s;
    108114}
    109 
Note: See TracChangeset for help on using the changeset viewer.