Hi,

        [Please retain the CC to [EMAIL PROTECTED] so
        that the bug tracking system can retain your input on this
        report] 

Version: 3.78.1

        The info manual for make reads:
----------------------------------------------------------------------
   If you would like to split a single shell command into multiple
lines of text, you must use a backslash at the end of all but the last
subline.  Such a sequence of lines is combined into a single line, by
deleting the backslash-newline sequences, before passing it to the
shell. 
----------------------------------------------------------------------

        Unfortunately, this is not exactly what happens: look at shis
 simple makefile:
----------------------------------------------------------------------
all:
        @echo "1234""5678"
        @echo "1234"\
"5678"
----------------------------------------------------------------------

        The following invocation shows the difference between the two
 lines:

__> make
12345678
1234 5678

        Observe the addition of a space in the second case.

        manoj
-- 
 Once it hits the fan, the only rational choice is to sweep it up,
 package it, and sell it as fertilizer.
Manoj Srivastava     <[EMAIL PROTECTED]>    <http://www.golden-gryphon.com/>
1024R/C7261095 print CB D9 F4 12 68 07 E4 05  CC 2D 27 12 1D F5 E8 6E
1024D/BF24424C print 4966 F272 D093 B493 410B  924B 21BA DABB BF24 424C

Reply via email to