On Wed, 2007-01-31 at 05:48 -0500, Jim wrote: > From the automake document, I'd infer that the following would work, > but it doesn't. You'd better read once more ;)
> cgi_libdir=$(libdir)/cgi-bin > cgi_libdir_SCRIPTS = confdata/index.cgi > > Makefile.am:18: `cgi_libdir_SCRIPTS' is used but `cgi_libdirdir' is > undefined > make: *** [Makefile.in] Error 1 > > So how would I accomplish putting index.cgi into the cgi-bin directory? cgi_libdir=$(libdir)/cgi-bin cgi_lib_SCRIPTS = confdata/index.cgi should do what you are looking for. Ralf