From 67246d9efe9a0e526a17f0751afe1d978cfa79c4 Mon Sep 17 00:00:00 2001 From: Carles Fernandez Date: Sat, 19 Jan 2013 17:06:39 +0000 Subject: [PATCH] Avoid the requirement of Boost 1.45, since Debian 6.0.6 uses 1.42 git-svn-id: https://svn.code.sf.net/p/gnss-sdr/code/trunk@322 64b25241-fba3-4117-9849-534c7e92360d --- src/main/main.cc | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/main/main.cc b/src/main/main.cc index e8a21d10b..b34ed8fb0 100644 --- a/src/main/main.cc +++ b/src/main/main.cc @@ -82,9 +82,10 @@ int main(int argc, char** argv) if (FLAGS_log_dir.empty()) { // temp_directory_path() is only available from - // Boost 1.45. Ubuntu 10.10 ships with 1.42 + // Boost 1.45. Ubuntu 10.10 and Debian 6.0.6 ships with 1.42 std::cout << "Logging will be done at " - << boost::filesystem::temp_directory_path() + //<< boost::filesystem::temp_directory_path() + << "/tmp" << std::endl << "Use gnss-sdr --log_dir=/path/to/log to change that." << std::endl;