How can I tell m4's patsubstr to replace all newlines in a string with a space?

I've tried:

patsubst(MULTI_LINE_STR_DEFINE,`\n',` ')

and

patsubst(MULTI_LINE_STR_DEFINE,`\\n',` ')
link|improve this question

feedback

1 Answer

up vote 2 down vote accepted
patsubst(MULTI_LINE_STR_DEFINE,`
',` ')

That is, you put the newline, literally, between quotes.

link|improve this answer
d'oh! Thanks sanxiyn. I feel like an idiot... – Ross Rogers Oct 14 '09 at 17:16
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.