bug-make
[Top][All Lists]
Advanced

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

[bug #20995] \ along multiple lines lines for '...' doesn't work


From: anonymous
Subject: [bug #20995] \ along multiple lines lines for '...' doesn't work
Date: Fri, 07 Sep 2007 12:53:49 +0000
User-agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.1.6) Gecko/20060601 Firefox/2.0.0.6 (Ubuntu-edgy)

URL:
  <http://savannah.gnu.org/bugs/?20995>

                 Summary: \ along multiple lines lines for '...' doesn't work

                 Project: make
            Submitted by: None
            Submitted on: Friday 09/07/2007 at 12:53 UTC
                Severity: 3 - Normal
              Item Group: Bug
                  Status: None
                 Privacy: Public
             Assigned to: None
             Open/Closed: Open
         Discussion Lock: Any
       Component Version: 3.81
        Operating System: None
           Fixed Release: None

    _______________________________________________________

Details:

> cat Makefile 
test::
        echo "test1"
        echo "test2"
        echo "hallo \
        this is a broken line"
        echo 'hello \
        this is another broke line' 

3.80 (old behavior):
> make test
echo "test1"
test1
echo "test2"
test2
echo "hallo \
this is a broken line"
hallo  this is a broken line
echo 'hello \
this is another broke line' 
hello this is another broke line    ### !!!

3.81 (new behavior):
> make test
echo "test1"
test1
echo "test2"
test2
echo "hallo \
        this is a broken line"
hallo this is a broken line
echo 'hello \
        this is another broke line' 
hello \                             ### !!!
this is another broke line          ### !!!


This break execution of s.th. else than 'echo' (e.g. 'perl').

I guess it's a bug?

rgds!

Frank




    _______________________________________________________

Reply to this item at:

  <http://savannah.gnu.org/bugs/?20995>

_______________________________________________
  Message sent via/by Savannah
  http://savannah.gnu.org/





reply via email to

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