From mboxrd@z Thu Jan 1 00:00:00 1970 From: Eric Bischoff To: Gregory Leblanc , docbook-tools-discuss@sourceware.cygnus.com Subject: Re: ANNOUNCE Support for XML Date: Sun, 12 Nov 2000 03:49:00 -0000 Message-ID: <00111212563600.00744@s010.strasbourg-251.cybercable.fr> References: <199911020844.JAA24738@eux100.sgp.st.com> <00111000461604.05451@s010.strasbourg-251.cybercable.fr> X-SW-Source: 2000-q4/msg00034.html Message-ID: <20001112034900.v6wOZGtzoTvpSM5uzn3khmTFnqUhdXXkgumy8e1j2mw@z> Le Vendredi 10 Novembre 2000 21:35, Gregory Leblanc a écrit : > make install prefix=$DESTDIR/usr mandir=$DESTDIR/usr/share/man/en > docdir=/usr/share/doc > > it should read > > make install prefix=$DESTDIR/usr mandir=$DESTDIR/usr/share/man/en > docdir=$DESTDIR/usr/share/doc I just checked. It is intentional that docdir is not buildrooted unlike mandir. It is due to the way the autoconf process works. In the Makefile, you have the following: ... htmldir = $(docdir)/html/docbook-utils-0.6 ... install-htmlDATA: $(html_DATA) ... $(mkinstalldirs) $(DESTDIR)$(htmldir) ^^^^^^^^^^^ so the buildrooting is done outside of the "docdir" variable by autoconf default behaviour. I know this is not logical, but I'm not responsible for that. I encourage you to give a try at building once agin the package to check what I'm saying.