From: Ronald Landheer-C. <bly...@us...> - 2003-10-01 08:43:14
|
OK.. On Tue, Sep 30, 2003 at 10:39:05PM +0200, Patrick Schemitz wrote: > I also had to remove @DRIVERS@ from liblcd4linux_la_SOURCES, automake > complained: > > Makefile.am:75: `liblcd4linux_la_SOURCES' includes configure > substitution `@DRIVERS@', and is referred to from > `liblcd4linux_la_SOURCES': configure substitutions not allowed in > _SOURCES variables Try adding this at the top: DRIVERS=@DRIVERS@ and this at the place where you removed @DRIVERS@: $(DRIVERS) note: use ( and ); not { and } Let me know what the results are - I think it should help :) rlc |