Junio C Hamano <gitster@xxxxxxxxx> writes: > So I think it would probably be a less-impact and useful solution to keep > sysconfdir and add "sysconfdir = @sysconfdir@" to config.mak.in as well. > > Is Kacper's latest patch with an obvious one-liner to config.mak.in > sufficient to achieve that? > > From: Kacper Kornet <kornet@xxxxxxxxxxx> > Subject: Re: [PATCH 1/1] Honor $(prefix) set in config.mak* when defin... > Date: Wed, 4 May 2011 16:29:21 +0200 > Message-ID: <20110504142921.GE18585@xxxxxxxxxxx> In other words, this one on top of the above (which defaults sysconfdir to /etc when $(prefix) is /usr and then sets git_etcdir to $(sysconfdir)). -- >8 -- Subject: [PATCH] config.mak.in: allow "configure --sysconfdir=/else/where" We do allow vanilla Makefile users to say make sysconfdir=/else/where and config.mak can also be tweaked manually for the same effect. Give the same configurablity to ./configure users as well. Signed-off-by: Junio C Hamano <gitster@xxxxxxxxx> --- config.mak.in | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/config.mak.in b/config.mak.in index 9614973..dd8f274 100644 --- a/config.mak.in +++ b/config.mak.in @@ -18,6 +18,7 @@ bindir = @bindir@ gitexecdir = @libexecdir@/git-core datarootdir = @datarootdir@ template_dir = @datadir@/git-core/templates +sysconfdir = @sysconfdir@ mandir=@mandir@ -- 1.7.5.1.242.g2ec223 -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html