[trunk] Missing Jamfile in Boost Root Directory

Hi everyone, I just did an SVN update to the latest in Boost's trunk and I don't see a Jamfile in the root directory anymore. I ask because I do this in my project Jamroot, which used to work: import os ; local BOOST_ROOT = [ os.environ BOOST_ROOT ] ; use-project /boost : $(BOOST_ROOT) ; But now when running bjam it complains that it can't see a Jamfile in the BOOST_ROOT directory. Any workarounds for this? TIA -- Dean Michael Berris blog.cplusplus-soup.com | twitter.com/mikhailberis linkedin.com/in/mikhailberis | facebook.com/dean.berris | deanberris.com

AMDG Dean Michael Berris wrote:
I just did an SVN update to the latest in Boost's trunk and I don't see a Jamfile in the root directory anymore.
I ask because I do this in my project Jamroot, which used to work:
import os ; local BOOST_ROOT = [ os.environ BOOST_ROOT ] ; use-project /boost : $(BOOST_ROOT) ;
But now when running bjam it complains that it can't see a Jamfile in the BOOST_ROOT directory.
Any workarounds for this?
The Jamroot in the boost directory should be enough. can you add ECHO $(BOOST_ROOT) ; to make sure that it's sane? In Christ, Steven Watanabe
participants (2)
-
Dean Michael Berris
-
Steven Watanabe