$include_dir="/home/hyper-archives/boost-build/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-build] problems with unit tests when build-dir has space(s)
From: George Georgiev (george.georgiev.sf_at_[hidden])
Date: 2012-05-21 20:20:18
Hi,
When there is a space in the absolute build-dir the unit tests do not work.
I believe the fix will be very simple
------- tools/testing.jam ----------
....
actions unit-test
{
$(PATH_SETUP)
$(LAUNCHER) "$(>)" $(ARGS) && $(.MAKE_FILE) $(<)
}
....
Now it is
$(LAUNCHER) $(>) $(ARGS) && $(.MAKE_FILE) $(<)
Thanks,
George