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 /t/Makefile | |
parent | Git 1.8.1-rc1 (diff) | |
download | tgif-dd6fc7ca91f79f9cee70943e64c4a4d4569ca4dd.tar.xz |
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 't/Makefile')
-rw-r--r-- | t/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/t/Makefile b/t/Makefile index 88e289fc8b..3025418ff5 100644 --- a/t/Makefile +++ b/t/Makefile @@ -6,7 +6,7 @@ -include ../config.mak.autogen -include ../config.mak -#GIT_TEST_OPTS=--verbose --debug +#GIT_TEST_OPTS = --verbose --debug SHELL_PATH ?= $(SHELL) PERL_PATH ?= /usr/bin/perl TAR ?= $(TAR) |