Honor $(prefix) set in config.mak* when defining ETC_GIT*
commit9fb1e6984201892b6dfb7e1a9195e2544a5af754
authorJohannes Sixt <j6t@kdbg.org>
Mon, 9 May 2011 08:24:55 +0000 (9 10:24 +0200)
committerJunio C Hamano <gitster@pobox.com>
Mon, 9 May 2011 22:13:03 +0000 (9 15:13 -0700)
treee7375ec5ce6b2ccf7d3f73ae765b166d908b5f1b
parent410ee20bde21b014c7655ea4f19d4ca66486df22
Honor $(prefix) set in config.mak* when defining ETC_GIT*

Notice that the prefix specified for the build influenced the definitions
of ETC_GITCONFIG and ETC_GITATTRIBUTES only when it was exactly '/usr'.
Kacper Kornet noticed that this was furthermore only the case when the
build was triggered using 'make prefix=/usr', i.e., the prefix was given
on the command line; it did not work when the prefix was specified in
config.mak because this file is included much later in the Makefile.

To fix this, move the conditional after the inclusion of config.mak.

Additionally, it is desirable to specify the etc directory for a build
(for example, a build with prefix /usr/local may still want to have the
system configuration in /etc/gitconfig). For this purpose, promote the
variable 'sysconfdir' from a helper variable to a configuration
variable. The prefix check that was moved must now be wrapped so that it
does not override sysconfdir setting given in config.mak.

Signed-off-by: Johannes Sixt <j6t@kdbg.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Makefile