2
0
mirror of https://github.com/boostorg/build.git synced 2026-02-14 00:32:11 +00:00

* Increase version, long overdue.

* Build bjam only by default, instead of all the other misc binaries.
* Implement disabling of splitting of imported variables. Not enable yet.
* Fix 7zip archiver search to work with newest 7z version.


[SVN r28541]
This commit is contained in:
Rene Rivera
2005-04-30 06:28:38 +00:00
parent de89d725b9
commit eefe778ebc
8 changed files with 105 additions and 77 deletions

View File

@@ -110,10 +110,14 @@ var_defines( char **e )
{
LIST *l = L0;
char *pp, *p;
# ifdef OPT_NO_EXTERNAL_VARIABLE_SPLIT
char split = '\0';
# else
# ifdef OS_MAC
char split = ',';
# else
char split = ' ';
# endif
# endif
size_t len = strlen(val + 1);
if ( val[1] == '"' && val[len] == '"')