K 10 svn:author V 7 sobomax K 8 svn:date V 27 2001-07-04T18:29:48.000000Z K 7 svn:log V 342 Workarround a bug in make(1) that leads results in --datadir/--localstatedir not being set properly for some ports. The problem is that ":S" modifier collapses spaces, even if the regex doesn't match. The following piece of make(1) "code" illustrates the problem: foo= a b .if ${foo} != ${foo:S/x//} all: @${ECHO} 'BAD!' .endif END