diff options
author | Stefano Lattarini <stefano.lattarini@gmail.com> | 2012-12-09 11:36:17 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2012-12-10 08:35:56 -0800 |
commit | dd6fc7ca91f79f9cee70943e64c4a4d4569ca4dd (patch) | |
tree | f77ff072c1d8a5180be96340eccf24d497326c92 /config.mak.in | |
parent | 816f290752cb43c88e31ea1a9e06ec84d559add3 (diff) | |
download | git-dd6fc7ca91f79f9cee70943e64c4a4d4569ca4dd.tar.gz |
Makefile: whitespace style fixes in macro definitions
Consistently use a single space before and after the "=" (or ":=", "+=",
etc.) in assignments to make macros. Granted, this was not a big deal,
but I did find the needless inconsistency quite distracting.
Signed-off-by: Stefano Lattarini <stefano.lattarini@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'config.mak.in')
-rw-r--r-- | config.mak.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config.mak.in b/config.mak.in index 69d48382fe..e8a9bb4682 100644 --- a/config.mak.in +++ b/config.mak.in @@ -18,7 +18,7 @@ datarootdir = @datarootdir@ template_dir = @datadir@/git-core/templates sysconfdir = @sysconfdir@ -mandir=@mandir@ +mandir = @mandir@ srcdir = @srcdir@ VPATH = @srcdir@ |