2
0
mirror of https://github.com/boostorg/build.git synced 2026-02-16 01:12:13 +00:00

Oops, account for spaces in LIB environment var.

[SVN r16463]
This commit is contained in:
Rene Rivera
2002-12-01 04:29:27 +00:00
parent 11fba0dbc6
commit c9adcf2bf4
2 changed files with 6 additions and 6 deletions

View File

@@ -105,7 +105,7 @@ toolset mipspro cc : "-o " : -D
toolset msvc cl : /Fe : -D
: /nologo /ML /O2 /Ob2 /Gy /GF /GA /GB
: /nologo /MLd /DEBUG /Z7 /Od /Ob0
: /LIBPATH:"$(LIB)" kernel32.lib ;
: /LIBPATH:$(LIB:J=" ") kernel32.lib ;
## Sun Workshop 6 C++
toolset sunpro CC : "-o " : -D
: -s -fast -O4
@@ -122,7 +122,7 @@ toolset vacpp xlc : "-o " : -D
toolset vc7 cl : /Fe : -D
: /nologo /ML /O2 /Ob2 /Gy /GF /GA /GB
: /nologo /MLd /DEBUG /Z7 /Od /Ob0
: /LIBPATH:"$(LIB)" kernel32.lib ;
: /LIBPATH:$(LIB:J=" ") kernel32.lib ;
# First set the build commands and options according to the
# preset toolset.
@@ -261,7 +261,7 @@ rule .exe
.clean $(exe) ;
return $(exe) ;
}
actions .cc { $(--cc) $(--bin)$(<:D=) $(--dir)$(<:D) $(--out)$(<) $(--def)$(--defs) $(--flags) $(--libs) $(>) }
actions .cc { $(--cc) $(--bin)$(<:D=) $(--dir)$(<:D) $(--out)$(<) $(--def)$(--defs) $(--flags) "$(--libs)" $(>) }
rule .link
{

View File

@@ -105,7 +105,7 @@ toolset mipspro cc : "-o " : -D
toolset msvc cl : /Fe : -D
: /nologo /ML /O2 /Ob2 /Gy /GF /GA /GB
: /nologo /MLd /DEBUG /Z7 /Od /Ob0
: /LIBPATH:"$(LIB)" kernel32.lib ;
: /LIBPATH:$(LIB:J=" ") kernel32.lib ;
## Sun Workshop 6 C++
toolset sunpro CC : "-o " : -D
: -s -fast -O4
@@ -122,7 +122,7 @@ toolset vacpp xlc : "-o " : -D
toolset vc7 cl : /Fe : -D
: /nologo /ML /O2 /Ob2 /Gy /GF /GA /GB
: /nologo /MLd /DEBUG /Z7 /Od /Ob0
: /LIBPATH:"$(LIB)" kernel32.lib ;
: /LIBPATH:$(LIB:J=" ") kernel32.lib ;
# First set the build commands and options according to the
# preset toolset.
@@ -261,7 +261,7 @@ rule .exe
.clean $(exe) ;
return $(exe) ;
}
actions .cc { $(--cc) $(--bin)$(<:D=) $(--dir)$(<:D) $(--out)$(<) $(--def)$(--defs) $(--flags) $(--libs) $(>) }
actions .cc { $(--cc) $(--bin)$(<:D=) $(--dir)$(<:D) $(--out)$(<) $(--def)$(--defs) $(--flags) "$(--libs)" $(>) }
rule .link
{