Changeset 535 for trunk/src/gmake/job.c


Ignore:
Timestamp:
Sep 19, 2006, 6:29:18 AM (19 years ago)
Author:
bird
Message:

o A real attempt at fixing the double quoting problem on windows. ash seems to want a

space between a double quote enclosing the last argument on the commandline and the
double quote enclosing the commandline (the -c argument). Also, defined HAVE_CYGWIN_SHELL.

o Fixed a newline escape problem when using batch_mode_shell on windows with kmk_ash.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/gmake/job.c

    r521 r535  
    25492549# ifndef KMK
    25502550    goto slow;
    2551 #else /* KMK */
     2551# else /* KMK */
    25522552    {
    25532553      /* Allow ash from kBuild. */
     
    29042904              {
    29052905                *(ap++) = '\\';
     2906#ifdef KMK /* see test in Makefile.kmk, required on windows. */
     2907                if (!batch_mode_shell)
     2908#endif
    29062909                *(ap++) = '\\';
    29072910                *(ap++) = '\n';
Note: See TracChangeset for help on using the changeset viewer.