diff options
author | Michael Palimaka <kensington@astralcloak.net> | 2012-02-08 21:59:04 +1100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2012-02-09 14:31:48 -0800 |
commit | ace5e97ecdf6a6ad8fd4ba443486fbe0058eb37a (patch) | |
tree | 845ff911b2b0f128b722abdf91e8322588b92d90 | |
parent | Sync with 1.7.6.6 (diff) | |
download | tgif-ace5e97ecdf6a6ad8fd4ba443486fbe0058eb37a.tar.xz |
Explicitly set X to avoid potential build breakage
$X is appended to binary names for Windows builds (ie. git.exe).
Pollution from the environment can inadvertently trigger this behaviour,
resulting in 'git' turning into 'gitwhatever' without warning.
Signed-off-by: Michael Palimaka <kensington@astralcloak.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rw-r--r-- | Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -428,6 +428,9 @@ PROGRAM_OBJS += upload-pack.o PROGRAM_OBJS += http-backend.o PROGRAM_OBJS += sh-i18n--envsubst.o +# Binary suffix, set to .exe for Windows builds +X = + PROGRAMS += $(patsubst %.o,git-%$X,$(PROGRAM_OBJS)) TEST_PROGRAMS_NEED_X += test-chmtime |