Re: How to include COPYING and COPYRIGHT in make install

2007-01-24 Thread Ralf Wildenhues
Hello Kirk, * Kirk Wolf wrote on Tue, Jan 23, 2007 at 05:02:27PM CET: EXTRA_DIST = COPYRIGHT COPYING SUBDIRS = src doc How do I get COPYING (and COPYRIGHT, etc) into the make install target? You could add a line doc_DATA = COPYRIGHT COPYING or you could replace this and the EXTRA_DIST

Re: How to include COPYING and COPYRIGHT in make install

2007-01-24 Thread Stepan Kasal
Hello, one nit: On Wed, Jan 24, 2007 at 08:00:59PM +0100, Ralf Wildenhues wrote: Please note that the docdir variable is new in Autoconf-2.60, so if you happen to use an older Autoconf version together with your Automake, then you also need something along the lines of docdir =

Re: How to include COPYING and COPYRIGHT in make install

2007-01-24 Thread Ralf Wildenhues
Hi Stepan, * Stepan Kasal wrote on Wed, Jan 24, 2007 at 09:51:29PM CET: On Wed, Jan 24, 2007 at 08:00:59PM +0100, Ralf Wildenhues wrote: docdir = ${datadir}/doc rather docdir = $(datadir)/doc/$(PACKAGE) That looks better, thanks. Cheers, Ralf