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/



_______________________________________________
Bug-make mailing list
Bug-make@gnu.org
http://lists.gnu.org/mailman/listinfo/bug-make

Reply via email to