Re: Variable substitution in source files

2003-09-15 Thread Eric Siegerman
On Sat, Sep 13, 2003 at 06:04:43AM -0700, Bill Moseley wrote: > foo: foo.in > @rm -f foo > @sed \ > -e 's,@@perlmoduledir@@,$(libexecdir)/perl,' \ > -e 's,@@swishbindir@@,$(bindir),' \ > -e 's,@@perlbinary@@,$(PERL),' \ >

Re: Variable substitution in source files

2003-09-15 Thread Akim Demaille
> I have a number of files that need variable substitution, so I do this in > a Makefile.am: > foo: foo.in > @rm -f foo > @sed \ > -e 's,@@perlmoduledir@@,$(libexecdir)/perl,' \ > -e 's,@@swishbindir@@,$(bindir),' \ > -e 's,

Variable substitution in source files

2003-09-13 Thread Bill Moseley
I have a number of files that need variable substitution, so I do this in a Makefile.am: foo: foo.in @rm -f foo @sed \ -e 's,@@perlmoduledir@@,$(libexecdir)/perl,' \ -e 's,@@swishbindir@@,$(bindir),' \ -e 's,@@perlbinary@@,$(PERL),'