diff options
author | Pascal Obry <pascal@obry.net> | 2009-02-05 08:37:24 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2009-02-05 00:29:23 -0800 |
commit | 98bb1ff83c0287e855c7608db1d57fe71d2d6e1b (patch) | |
tree | cbf9b90dc692011ec27ac067b9efa9ee9a6799d7 /config.mak.in | |
parent | 0c0ead7e79559013d6f9eea6f7e55d1845c11171 (diff) | |
download | git-98bb1ff83c0287e855c7608db1d57fe71d2d6e1b.tar.gz |
config.mak.in: define paths without trailing slash
The main Makefile defines gitexecdir and template_dir without trailing
slash. config.mak.in should do the same to be consistent.
Signed-off-by: Pascal Obry <pascal@obry.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'config.mak.in')
-rw-r--r-- | config.mak.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/config.mak.in b/config.mak.in index 55b25c3d26..7cce0c12d5 100644 --- a/config.mak.in +++ b/config.mak.in @@ -13,9 +13,9 @@ TCLTK_PATH = @TCLTK_PATH@ prefix = @prefix@ exec_prefix = @exec_prefix@ bindir = @bindir@ -gitexecdir = @libexecdir@/git-core/ +gitexecdir = @libexecdir@/git-core datarootdir = @datarootdir@ -template_dir = @datadir@/git-core/templates/ +template_dir = @datadir@/git-core/templates mandir=@mandir@ |