All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2] Explicitly set X to avoid potential build breakage
@ 2012-02-08 10:59 Michael
  2012-02-09 22:32 ` Junio C Hamano
  0 siblings, 1 reply; 2+ messages in thread
From: Michael @ 2012-02-08 10:59 UTC (permalink / raw)
  To: git

$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>
---
 Makefile |    3 +++
 1 files changed, 3 insertions(+), 0 deletions(-)

diff --git a/Makefile b/Makefile
index 87fb30a..b21d40c 100644
--- a/Makefile
+++ b/Makefile
@@ -460,6 +460,9 @@ PROGRAM_OBJS += http-backend.o
 PROGRAM_OBJS += sh-i18n--envsubst.o
 PROGRAM_OBJS += credential-store.o
 
+# Binary suffix used for Windows builds
+X =
+
 PROGRAMS += $(patsubst %.o,git-%$X,$(PROGRAM_OBJS))
 
 TEST_PROGRAMS_NEED_X += test-chmtime
-- 
1.7.8.4

^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH v2] Explicitly set X to avoid potential build breakage
  2012-02-08 10:59 [PATCH v2] Explicitly set X to avoid potential build breakage Michael
@ 2012-02-09 22:32 ` Junio C Hamano
  0 siblings, 0 replies; 2+ messages in thread
From: Junio C Hamano @ 2012-02-09 22:32 UTC (permalink / raw)
  To: Michael Palimaka; +Cc: git

Thanks.

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2012-02-09 22:32 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-02-08 10:59 [PATCH v2] Explicitly set X to avoid potential build breakage Michael
2012-02-09 22:32 ` Junio C Hamano

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.