diff options
author | Eike Rathke <erack@erack.de> | 2011-08-24 02:25:03 +0200 |
---|---|---|
committer | Eike Rathke <erack@erack.de> | 2011-08-24 02:25:03 +0200 |
commit | 8dfa38c418125ad880e9d4b2a968f0f1778d6de4 (patch) | |
tree | 177d8e3cf9c0713bac22bdad4f8e1923ec5154ea /solenv | |
parent | fcac4e3eb4df6dcd4d6f6955a5d369262bcd1ea4 (diff) |
enquote invocation of $(ML_EXE) => "$(ML_EXE)"
This helped to get over
[ build ASM ] basic/source/runtime/wnt-x86
/bin/sh: /cygdrive/c/Programme/Microsoft: No such file or directory
when blanks are in the path as in
--with-asm-home="/cygdrive/c/Programme/Microsoft Visual Studio 9.0/VC/bin"
Diffstat (limited to 'solenv')
-rw-r--r-- | solenv/gbuild/platform/windows.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/solenv/gbuild/platform/windows.mk b/solenv/gbuild/platform/windows.mk index ae85cf2eb6d1..9e0591605079 100644 --- a/solenv/gbuild/platform/windows.mk +++ b/solenv/gbuild/platform/windows.mk @@ -353,7 +353,7 @@ define gb_AsmObject__command $(call gb_Output_announce,$(2),$(true),ASM,3) $(call gb_Helper_abbreviate_dirs_native,\ mkdir -p $(dir $(1)) $(dir $(4)) && \ - $(ML_EXE) $(gb_AFLAGS) -D$(COM) /Fo$(1) $(3)) && \ + "$(ML_EXE)" $(gb_AFLAGS) -D$(COM) /Fo$(1) $(3)) && \ echo "$(1) : $(realpath $(3))" > $(4) endef |