[PATCH 0/3] Fix installation paths with make install-doc

2013-02-12 Thread John Keeping
When using the top-level install-doc target the html, info and man target directories are inherited from the top-level Makefile by the documentation Makefile as relative paths, which is not expected and results in the files being installed in an unexpected location. The first two patches are

Re: [PATCH 0/3] Fix installation paths with make install-doc

2013-02-12 Thread Jonathan Nieder
John Keeping wrote: Documentation/Makefile: fix inherited {html,info,man}dir This doesn't seem to have hit the list. Thanks, Jonathan -- To unsubscribe from this list: send the line unsubscribe git in the body of a message to majord...@vger.kernel.org More majordomo info at

Re: [PATCH 0/3] Fix installation paths with make install-doc

2013-02-12 Thread John Keeping
On Tue, Feb 12, 2013 at 02:25:08PM -0800, Jonathan Nieder wrote: John Keeping wrote: Documentation/Makefile: fix inherited {html,info,man}dir This doesn't seem to have hit the list. Hmm... it made it to gmane: http://article.gmane.org/gmane.comp.version-control.git/216188 -- To

Re: [PATCH 0/3] Fix installation paths with make install-doc

2013-02-12 Thread Jonathan Nieder
John Keeping wrote: On Tue, Feb 12, 2013 at 02:25:08PM -0800, Jonathan Nieder wrote: John Keeping wrote: Documentation/Makefile: fix inherited {html,info,man}dir This doesn't seem to have hit the list. Hmm... it made it to gmane:

Re: [PATCH 0/3] Fix installation paths with make install-doc

2013-02-12 Thread Junio C Hamano
Jonathan Nieder jrnie...@gmail.com writes: John Keeping wrote: Documentation/Makefile: fix inherited {html,info,man}dir This doesn't seem to have hit the list. More importantly, When using the top-level install-doc target the html, info and man target directories are inherited from

Re: [PATCH 0/3] Fix installation paths with make install-doc

2013-02-12 Thread Junio C Hamano
Junio C Hamano gits...@pobox.com writes: I _think_ exporting mandir/html/infodir from the top-level Makefile is wrong to begin with. We should drop the export mandir from there. Ah, it is this thing, isn't it? commit d8cf908cb6012cd4dc3d1089a849daf646150c2e Author: Junio C Hamano

Re: [PATCH 0/3] Fix installation paths with make install-doc

2013-02-12 Thread John Keeping
On Tue, Feb 12, 2013 at 02:45:34PM -0800, Junio C Hamano wrote: Jonathan Nieder jrnie...@gmail.com writes: John Keeping wrote: Documentation/Makefile: fix inherited {html,info,man}dir This doesn't seem to have hit the list. More importantly, When using the top-level

Re: [PATCH 0/3] Fix installation paths with make install-doc

2013-02-12 Thread John Keeping
On Tue, Feb 12, 2013 at 02:57:25PM -0800, Junio C Hamano wrote: Junio C Hamano gits...@pobox.com writes: I _think_ exporting mandir/html/infodir from the top-level Makefile is wrong to begin with. We should drop the export mandir from there. Ah, it is this thing, isn't it? commit

Re: [PATCH 0/3] Fix installation paths with make install-doc

2013-02-12 Thread Junio C Hamano
John Keeping j...@keeping.me.uk writes: Looks like it - I tried this for the first time today (with pu) so I didn't realise it was a recent change, and I didn't think to blame the export line. Unfortunately that bogus change is already in 'next', but luckily we caught it before it graduated