VirtualBox

Changeset 1442 in kBuild


Ignore:
Timestamp:
Mar 30, 2008 6:45:10 AM (17 years ago)
Author:
bird
Message:

fixes.

Location:
trunk/src/kmk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/kmk/function.c

    r1440 r1442  
    37753775          o = variable_expand_for_file_2 (o, cmds->command_lines[i], file);
    37763776
    3777           /* blank, if so, drop it. */
     3777          /* Skip it if it has a '%' prefix or is blank. */
    37783778          p = o;
    3779           while (isblank ((unsigned char)*o))
     3779          while (isblank ((unsigned char)*o)
     3780              || strchr("@-+", *o))
    37803781            o++;
    3781           if (o != '\0')
     3782          if (*o != '\0' && *o != '%')
    37823783            o = strchr (o, '\0');
    37833784          else
  • trunk/src/kmk/kmkbuiltin/append.c

    r1440 r1442  
    7373       &&  argv[i][0] == '-'
    7474       &&  argv[i][1] != '\0' /* '-' is a file */
    75        &&  strchr("-nv", argv[i][1]) /* valid option char */
     75       &&  strchr("-cnv", argv[i][1]) /* valid option char */
    7676       )
    7777    {
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette