bug-automake
[Top][All Lists]
Advanced

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

am__append drops line continuation chars


From: Ralf Corsepius
Subject: am__append drops line continuation chars
Date: 03 Dec 2002 12:49:54 +0100

Hi,

If using a Makefile.am which triggers automake to using am_append, line
continuation char get lost:

Example Makefile.am:

include_foo_HEADERS =  0.h
if A
include_foo_HEADERS += a0.h \
  a1.h
endif
if B
include_foo_HEADERS += b0.h \
  b1.h
endif


Automake-1.7.1 and automake-1.7.1b generated Makefile.ins contain this:

@address@hidden = a0.h
@A_TRUE@  a1.h
                                                                       
@address@hidden = b0.h
@B_TRUE@  b1.h

Note, the '\' from the include_foo_HEADERS += 
have got lost, silently causing the resulting Makefile.in to be broken.

Ralf






reply via email to

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