git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH QGit] Immediately evaluate the ProgramFiles environment variable
@ 2009-05-10  9:53 Markus Heidelberg
  2009-05-10 12:09 ` Marco Costalba
  0 siblings, 1 reply; 2+ messages in thread
From: Markus Heidelberg @ 2009-05-10  9:53 UTC (permalink / raw)
  To: Marco Costalba; +Cc: git, Markus Heidelberg

Commit 50d839b (Don't hardcode GIT_EXEC_DIR for Windows so much,
2009-04-18) broke 'make install' on Windows. Somehow the current working
directory was prepended to the install path given with target.path, when
$(ProgramFiles) should be evaluated during the call of 'make'.
This seems to be a qmake bug with generating the Makefile.

Signed-off-by: Markus Heidelberg <markus.heidelberg@web.de>
---

For clarification:
$ cd C:\projects\qgit4\src
$ qmake src.pro -win32 -o Makefile

Now the install_target and uninstall_target targets in Makefile.{Debug,Release}
are wrong, for example

uninstall_target:  FORCE
	-$(DEL_FILE) "c:$(INSTALL_ROOT)\projects\qgit\src\$(ProgramFiles)\Git\bin\$(TARGET)"
	-$(DEL_DIR) $(INSTALL_ROOT)"c:\projects\qgit\src\$(ProgramFiles)\Git\bin\" 

instead of

uninstall_target:  FORCE
	-$(DEL_FILE) "c:$(INSTALL_ROOT)\Programme\Git\bin\$(TARGET)"
	-$(DEL_DIR) c:$(INSTALL_ROOT)\Programme\Git\bin 

Hmm, seems as if there is another bug:
$(INSTALL_ROOT)"c:  vs.  c:$(INSTALL_ROOT)

Sorry for this and for noticing it just a bit too late. I haven't called 'make
install' before.

 src/src.pro |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/src/src.pro b/src/src.pro
index 619a9a8..133e64c 100644
--- a/src/src.pro
+++ b/src/src.pro
@@ -1,6 +1,6 @@
 # Under Windows launch script start_qgit.bat needs the
 # value GIT_EXEC_DIR to be set to the git bin directory
-GIT_EXEC_DIR = "$(ProgramFiles)\\Git\\bin"
+GIT_EXEC_DIR = "$$(ProgramFiles)\\Git\\bin"
 
 # Under Windows uncomment following line to enable console messages
 #CONFIG += ENABLE_CONSOLE_MSG
-- 
1.6.3.20.g687dc

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

* Re: [PATCH QGit] Immediately evaluate the ProgramFiles environment  variable
  2009-05-10  9:53 [PATCH QGit] Immediately evaluate the ProgramFiles environment variable Markus Heidelberg
@ 2009-05-10 12:09 ` Marco Costalba
  0 siblings, 0 replies; 2+ messages in thread
From: Marco Costalba @ 2009-05-10 12:09 UTC (permalink / raw)
  To: Markus Heidelberg; +Cc: git

On Sun, May 10, 2009 at 11:53, Markus Heidelberg
<markus.heidelberg@web.de> wrote:
> Commit 50d839b (Don't hardcode GIT_EXEC_DIR for Windows so much,
> 2009-04-18) broke 'make install' on Windows. Somehow the current working
> directory was prepended to the install path given with target.path, when
> $(ProgramFiles) should be evaluated during the call of 'make'.
> This seems to be a qmake bug with generating the Makefile.
>
> Signed-off-by: Markus Heidelberg <markus.heidelberg@web.de>
> ---

Thanks, patch applied and pushed.

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

end of thread, other threads:[~2009-05-10 12:14 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-05-10  9:53 [PATCH QGit] Immediately evaluate the ProgramFiles environment variable Markus Heidelberg
2009-05-10 12:09 ` Marco Costalba

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).