Re: [Fink-devel] One more thing...

2002-01-27 Thread Max Horn
At 15:06 Uhr +1100 27.01.2002, Jeremy Higgs wrote: [...] >Max, is it OK to have: > >PatchScript: << >sed 's|@FINK_PREFIX@|%p|g' < %a/%f.patch | patch -p1 >ln -s ... ><< > >(i.e. No spaces or tabs before each line). Yes that's OK. I personally feel it is easier to read with the spaces, but you ar

Re: [Fink-devel] One more thing...

2002-01-26 Thread Jeremy Higgs
On 27/1/02 9:38 AM, "Max Horn" <[EMAIL PROTECTED]> wrote: > Please stop using the old obsolete way to specify multi line fields. > For example, don't write > > PatchScript: sed 's|@PREFIX@|%p|g' < %a/%f.patch | patch -p1 > mkdir ldap > ln -s %p/lib ldap/libraries > ln -s %p/include ldap/include

[Fink-devel] One more thing...

2002-01-26 Thread Max Horn
Please stop using the old obsolete way to specify multi line fields. For example, don't write PatchScript: sed 's|@PREFIX@|%p|g' < %a/%f.patch | patch -p1 mkdir ldap ln -s %p/lib ldap/libraries ln -s %p/include ldap/include but rather use PatchScript: << sed 's|@PREFIX@|%p|g' < %a/%f.p