From fc864db1de29a50f680b0dca7f529a482f496762 Mon Sep 17 00:00:00 2001 From: Johannes Schindelin Date: Thu, 9 Oct 2014 12:01:35 +0200 Subject: [PATCH] MINGW: install into /mingw/bin/ by default In msysGit, we collapsed all bin/ directories into one, so it made sense to install Git into /bin/ right away. With the new Git for Windows SDK, we want to clean that up a little and be more standards-compliant. In particular, we will use most of MinGW as-is, and provide Git as a proper MinGW package. So let's install the files into the correct place. Signed-off-by: Johannes Schindelin --- config.mak.uname | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config.mak.uname b/config.mak.uname index 50f4ce0adb7f4f..9d4ffc4ee39544 100644 --- a/config.mak.uname +++ b/config.mak.uname @@ -518,7 +518,7 @@ ifneq (,$(findstring MINGW,$(uname_S))) SPARSE_FLAGS = -Wno-one-bit-signed-bitfield ifneq (,$(wildcard ../THIS_IS_MSYSGIT)) htmldir = share/doc/git/$(firstword $(subst -, ,$(GIT_VERSION)))/html - prefix = + prefix = /mingw/ INSTALL = /bin/install EXTLIBS += /mingw/lib/libz.a NO_R_TO_GCC_LINKER = YesPlease