Hayden Ridenour writes:
While trying to build the latest version of Jam/MR from the sources, I've
encountered the problem that -I<path> expansions of paths with a space
become -I<first-part> -I<second-part>.
When jam parses a Jamfile, it treats spaces as delimiters.
Thus, the assignment:
HDRS = /some/where/over the/rainbow ;
sets HDRS to a list of two values, "/some/where/over" and "the/rainbow".
Luckily, you can use quotes to tell jam that a space is a data value, not
a delimiter:
HDRS = '/some/where/over the/rainbow' ;
--Laura
------------------------------------------------------------------------
Laura Wingerd lau...@perforce.com Voice: 1-510-864-7400
Perforce Software, Inc. www.perforce.com Fax: 1-510-864-5340
------------------------------------------------------------------------