Makefile: do not export mandir/htmldir/infodir
commitc09d62f5635928ab20909cb650b621f7520b56fb
authorJunio C Hamano <gitster@pobox.com>
Tue, 12 Feb 2013 23:02:13 +0000 (12 15:02 -0800)
committerJunio C Hamano <gitster@pobox.com>
Tue, 12 Feb 2013 23:02:13 +0000 (12 15:02 -0800)
tree73233b666bc08db66daee22aa870b6f0df6935e6
parentd8cf908cb6012cd4dc3d1089a849daf646150c2e
Makefile: do not export mandir/htmldir/infodir

These are defined in the main Makefile to be funny values that are
optionally relative to an unspecified location that is determined at
runtime.  They are only suitable for hardcoding in the binary via
the -DGIT_{MAN,HTML,INFO}_PATH=<value> C preprocessor options, and
are not real paths, contrary to what any sane person, and more
importantly, the Makefile in the documentation directory, would
expect.

A longer term fix is to introduce runtime_{man,html,info}dir variables
to hold these funny values, and make {man,html,info}dir variables
to have real paths whose default values begin with $(prefix), but
as a first step, stop exporting them from the top-level Makefile

Signed-off-by: Junio C Hamano <gitster@pobox.com>
Makefile