make-w32
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Problem with backslash/newline on DOS/Windows/OS2/etc.?


From: Paul D. Smith
Subject: Re: Problem with backslash/newline on DOS/Windows/OS2/etc.?
Date: Wed, 13 Jul 2005 09:20:30 -0400

%% "Earnie Boyd" <address@hidden> writes:

  >> My preference would be to keep this behavior identical between
  >> systems (that is, remove the TAB and do not add a space)... one less
  >> difference between ports is a good thing in my book.

  eb> I should clarify that I mean when !unixy_shell or whatever the
  eb> variable is.

Right, I understood that.  I still think that people make an attempt to
use makefiles portable between the two systems, even without a
unixy_shell on Windows.

Most Windows commands (other than command.com) take "/" instead of "\",
etc. so it's possible for some subset of requirements anyway.

  eb> As far as compliant behaviour I wonder how many GNU make files
  eb> will need to change as a result of these POSIX compliance changes?

Some, but probably not a ridiculously high percentage.

Most makefiles I've seen tend put a space before the backslash:

            for f in $(ARGS); do \

and many other makefiles indent the next line:

            for f in $(ARGS); do\
              something;\
            done

(the latter is OK because even without whitespace intervening,
"something;done" is correct).

But first this is a specific requirement by POSIX, and second it
actually has real benefits in some situations, to offset the
compatibility.  So, we'll do it and then it'll be done.


To be honest I'm far more concerned about the backward-incompatibility
introduced by the "secondary expansion" feature than I am with this
issue.

-- 
-------------------------------------------------------------------------------
 Paul D. Smith <address@hidden>          Find some GNU make tips at:
 http://www.gnu.org                      http://make.paulandlesley.org
 "Please remain calm...I may be mad, but I am a professional." --Mad Scientist




reply via email to

[Prev in Thread] Current Thread [Next in Thread]