From 0caa010580bbdb874c8d6631e35652a8ee03579b Mon Sep 17 00:00:00 2001 From: Rene Rivera Date: Sun, 14 Dec 2003 20:08:14 +0000 Subject: [PATCH] Fix setting PATH and quotes problem. [SVN r21252] --- v1/borland-tools.jam | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/v1/borland-tools.jam b/v1/borland-tools.jam index eec7e6d45..2acd117ff 100644 --- a/v1/borland-tools.jam +++ b/v1/borland-tools.jam @@ -118,7 +118,7 @@ if $(NT) { actions borland-Link-action { - set PATH=$(BCC_TOOL_PATH);"%PATH%" + set "PATH=$(BCC_TOOL_PATH);%PATH%" "$(BCC_TOOL_PATH)bcc32" -v -q $(LINKFLAGS) -L"$(LIBPATH)" -L"$(STDLIBPATH)" -e"$(<[1])" @"$(>)" $(FINDLIBS:S=.lib) } } @@ -186,11 +186,3 @@ actions borland-Archive-action IF EXIST "$(<)" DEL "$(<)" "$(BCC_TOOL_PATH)tlib" /P64 /u /a /C /$(ARFLAGS) "$(<)" +"$(>)" } - - - - - - - -